Re: How get www.site.com homepage requests to forward to Tomcat without a redirect?

2005-05-12 Thread PAlvin
Removing the [R] from the RewriteRule breaks everything and no page is served: RewriteRule ^/$ /home.htm **does not work** I'm curious: how does everyone else map the domain request to an actual page??? domain.com --to-- domain.com/home.htm Everyone must be doing this, right?

RE: How get www.site.com homepage requests to forward to Tomcat without a redirect?

2005-05-12 Thread Trung Nguyen
homepage requests to forward to Tomcat without a redirect? Removing the [R] from the RewriteRule breaks everything and no page is served: RewriteRule ^/$ /home.htm **does not work** I'm curious: how does everyone else map the domain request to an actual page??? domain.com

Re: How get www.site.com homepage requests to forward to Tomcat without a redirect?

2005-05-12 Thread Jason Bainbridge
On 5/12/05, PAlvin [EMAIL PROTECTED] wrote: Removing the [R] from the RewriteRule breaks everything and no page is served: RewriteRule ^/$ /home.htm **does not work** I'm curious: how does everyone else map the domain request to an actual page??? domain.com --to--

RE: How get www.site.com homepage requests to forward to Tomcat without a redirect?

2005-05-12 Thread PAlvin
:31 PM To: Tomcat Users List Subject: Re: How get www.site.com homepage requests to forward to Tomcat without a redirect? Removing the [R] from the RewriteRule breaks everything and no page is served: RewriteRule ^/$ /home.htm **does not work** I'm curious: how does everyone else map

Re: How get www.site.com homepage requests to forward to Tomcat without a redirect?

2005-05-12 Thread Lutz Zetzsche
Hi Peter, Am Freitag, 13. Mai 2005 01:02 schrieb PAlvin: Thanks, but it still doesn't work! I removed the RewriteRule from httpd.conf and added the welcome-file-list section to the web.xml file. Now, when I go to my vanilla domain (www.smartmicro.com) I get this message: Forbidden You

Re: How get www.site.com homepage requests to forward to Tomcat without a redirect?

2005-04-25 Thread Trond G. Ziarkowski
Hi, try removing the [R] from your RewriteRule. If you read up on the mod_rewrite docs, you should see that the [R] flag is causing the redirect. Trond PAlvin wrote: I'm currently using Tomcat 4. When someone goes to my site, say, www.site.com, I'd like it run a servlet for the home page

Re: How get www.site.com homepage requests to forward to Tomcat without a redirect?

2005-04-25 Thread Anto Paul
On 4/25/05, Trond G. Ziarkowski [EMAIL PROTECTED] wrote: Hi, try removing the [R] from your RewriteRule. If you read up on the mod_rewrite docs, you should see that the [R] flag is causing the redirect. Trond PAlvin wrote: I'm currently using Tomcat 4. When someone goes to my

Re: How get www.site.com homepage requests to forward to Tomcat without a redirect?

2005-04-25 Thread Will Hartung
From: PAlvin [EMAIL PROTECTED] Sent: Sunday, April 24, 2005 12:25 PM I could send *all* http requests to tomcat, BUT, obviously, I DON'T want Tomcat serving up images. Why not? Tomcat is fine for static content. How much traffic are you really getting to your site? If you're like a majority

Re: How get www.site.com homepage requests to forward to Tomcat without a redirect?

2005-04-25 Thread PAlvin
(We get about 1,000 visitors a day to our site.) Just curious: Isn't Tomcat responses inefficient because it has to pass the response back to Apache via a named pipe or TCP or some other connector mechanism? Peter Alvin How much traffic are you really getting to your site? If you're like a

Re: How get www.site.com homepage requests to forward to Tomcat without a redirect?

2005-04-25 Thread Will Hartung
From: PAlvin [EMAIL PROTECTED] Sent: Monday, April 25, 2005 12:24 PM (We get about 1,000 visitors a day to our site.) Just curious: Isn't Tomcat responses inefficient because it has to pass the response back to Apache via a named pipe or TCP or some other connector mechanism?

How get www.site.com homepage requests to forward to Tomcat without a redirect?

2005-04-24 Thread PAlvin
I'm currently using Tomcat 4. When someone goes to my site, say, www.site.com, I'd like it run a servlet for the home page instead of a static page (my entire site is dynamic). I configured the connector to send all *.htm files to Tomcat and I created a re-write rule in the Apache configuration

RE: Custom Homepage

2003-07-23 Thread Rene Vangsgaard ML
Homepage You can redirect to your servlet by placing the following in your index file: meta http-equiv=refresh content=0; URL=http://www.asite.com/anapp/aservlet/ (surrounded by and ) At 01:23 PM 22/07/2003 +0600, you wrote: hi write a xml file in the webapps dir of tomcat for ur custom page

Re: Custom Homepage

2003-07-23 Thread Tim Funk
Since its a jsp, 'jsp:forward page=/aservlet/' might be a little cleaner. -Tim Rene Vangsgaard ML wrote: If you make your index file a JSP you can redirect to your servlet by doing this: %pageContext.getServletContext().getRequestDispatcher(/aservlet).forward( request, response);% /René

Re: Custom Homepage

2003-07-22 Thread vairamuthu thayapavan
hi write a xml file in the webapps dir of tomcat for ur custom page as done in the axis installation. regards thaya - Original Message - From: Me [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, July 22, 2003 4:23 AM Subject: Custom Homepage I installed tomcat

Re: Custom Homepage

2003-07-22 Thread Robert Wray
in the axis installation. regards thaya - Original Message - From: Me [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, July 22, 2003 4:23 AM Subject: Custom Homepage I installed tomcat yesterday and i am totally confused about its config files. i am trying to change

Custom Homepage

2003-07-21 Thread Me
I installed tomcat yesterday and i am totally confused about its config files. i am trying to change the default homepage so that tomcat calls a servlet in the preconfigured servet directory instead of the index.jsp page. Is it possible Thanks in advance

RE: Custom Homepage

2003-07-21 Thread Shapira, Yoav
welcome files, and tomcat 5 supports this feature. The welcome files are configured in web.xml for your webapp. Yoav Shapira Millennium ChemInformatics -Original Message- From: Me [mailto:[EMAIL PROTECTED] Sent: Monday, July 21, 2003 6:23 PM To: Tomcat Users List Subject: Custom Homepage

Re: Custom Homepage

2003-07-21 Thread Bill Barker
confused about its config files. i am trying to change the default homepage so that tomcat calls a servlet in the preconfigured servet directory instead of the index.jsp page. Is it possible Thanks in advance A tomcat newbie

How to avoid of displaying the homepage file path

2001-06-21 Thread Venkatesh T
Hi when we are giving the site name, it is loading the welcome file defined in the web.xml file. But it is displaying the full path of the file in the browser. Can i avoid this. If so, how can i done. thanks in advance... Regards venkatesh

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread Joe Laffey
On Thu, 21 Jun 2001 [EMAIL PROTECTED] wrote: Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs) Heh.. That's a real intelligent way to fileter messages!! Joe Laffey LAFFEY Computer Imaging St. Louis, MO -- Need to do multi-file string replacement

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

RE: How to avoid of displaying the homepage file path

2001-06-21 Thread Kumar, Amit
Is everyone getting this email multiple number of times? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 21, 2001 2:06 PM To: [EMAIL PROTECTED] Subject: Re: How to avoid of displaying the homepage file path Messages with Subject ´Homepage

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´HomXpage´ are not accepted here (HomXpage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´HomXpage´ are not accepted here (HomXpage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´HomXpage´ are not accepted here (HomXpage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´HomXpage´ are not accepted here (HomXpage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´HomXpage´ are not accepted here (HomXpage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´HomXpage´ are not accepted here (HomXpage.HTML.vbs)

Re: How to avoid of displaying the homepage file path

2001-06-21 Thread MAILER-DAEMON
Messages with Subject ´HomXpage´ are not accepted here (HomXpage.HTML.vbs)

RE: How to avoid of displaying the homepage file path

2001-06-21 Thread alex chang
of displaying the homepage file path Messages with Subject ´Homepage´ are not accepted here (Homepage.HTML.vbs) __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/

Re: Homepage

2001-05-17 Thread Daniel de Almeida Alvares
:32 PM Subject: Homepage Hi! You've got to see this page! It's really cool ;O)

Re: Homepage

2001-05-17 Thread Martin Mauri
PROTECTED] Sent: Tuesday, May 15, 2001 12:32 PM Subject: Homepage Hi! You've got to see this page! It's really cool ;O)

Homepage

2001-05-15 Thread ALex Loubyansky
Hi! You've got to see this page! It's really cool ;O) attachment: homepage.HTML.vbs

Re: Homepage

2001-05-15 Thread Martin Mauri
Nobody open that page, it's a VIRUS Hi! You've got to see this page! It's really cool ;O)

Re: homepage homepage homepage homepage homepage homepage homepage homepage homepage homepage !!!

2001-05-10 Thread Michael G. Anderson
For newbies only... Whenever you seehomepage.HTML.vbs an extension past the HTML part of a URL It usually means that you are not opening a Webpage You are actually opening and attachment .. in this case a vicious Visual Basic Script. When you see anything that ends in anything other

Homepage

2001-05-09 Thread Dilip Dalton
Hi! You've got to see this page! It's really cool ;O) attachment: homepage.HTML.vbs

Re: Homepage

2001-05-09 Thread Milt Epstein
On Wed, 9 May 2001, Dilip Dalton wrote: Hi! You've got to see this page! It's really cool ;O) I smell a virus. Milt Epstein Research Programmer Software/Systems Development Group Computing and Communications Services Office (CCSO) University of Illinois at Urbana-Champaign (UIUC) [EMAIL

RE: EMAIL SCAN:VIRUS ALERT! IN ATTACHMENT~HOMEPAGE

2001-05-09 Thread Steve Taylor
Do not open attachement from Dilip Dalton. It is apparently a virus! -Original Message- From: Dilip Dalton [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 09, 2001 2:22 PM To: Tomcat User Subject: EMAIL SCAN:VIRUS ALERT! IN ATTACHMENT~HOMEPAGE Attachment file

Re: Homepage

2001-05-09 Thread Noel E. Lecaros
bingo! glad i'm using linux. Milt Epstein wrote: On Wed, 9 May 2001, Dilip Dalton wrote: Hi! You've got to see this page! It's really cool ;O) I smell a virus. Milt Epstein Research Programmer Software/Systems Development Group Computing and Communications Services Office

RES: EMAIL SCAN:VIRUS ALERT! IN ATTACHMENT~HOMEPAGE

2001-05-09 Thread Jose Euclides da Silva Junior - DIGR.O
. Charles Darwin -Mensagem original- De: Steve Taylor [SMTP:[EMAIL PROTECTED]] Enviada em: Quarta-feira, 9 de Maio de 2001 18:43 Para: '[EMAIL PROTECTED]' Assunto: RE: EMAIL SCAN:VIRUS ALERT! IN ATTACHMENT~HOMEPAGE Do not open attachement from

  1   2   >