How do I map www.blah.com to a servlet?

2001-04-23 Thread Chris Bailey
I'm using Linux, Apache 1.3.19, Tomcat 3.2.1, mod_jk. I want to map a URL such as "http://www.foo.com"; to a servlet. Right now I do this by just mapping the default page (e.g. index.html) to a servlet. But, then index.html shows up in the URL on many further uses. Is there a different way to

RE: How do I map www.blah.com to a servlet?

2001-04-23 Thread Filip Hanik
hris Bailey [mailto:[EMAIL PROTECTED]] > Sent: Monday, April 23, 2001 4:18 PM > To: [EMAIL PROTECTED] > Subject: How do I map www.blah.com to a servlet? > > > I'm using Linux, Apache 1.3.19, Tomcat 3.2.1, mod_jk. I want to map a > URL such as "http://www.foo.c

RE: How do I map www.blah.com to a servlet?

2001-04-23 Thread Chris Bailey
23, 2001 4:18 PM > > To: [EMAIL PROTECTED] > > Subject: How do I map www.blah.com to a servlet? > > > > > > I'm using Linux, Apache 1.3.19, Tomcat 3.2.1, mod_jk. I want to map a > > URL such as "http://www.foo.com"; to a servlet. Right now I do

Re: How do I map www.blah.com to a servlet?

2001-04-23 Thread Joel Parramore
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 23, 2001 7:45 PM Subject: RE: How do I map www.blah.com to a servlet? > This is what I'm already doing (see the email below) - I map my servlet > to index.html in web.xml. > > On 23 Apr 2001 16:26:04 -0700, [E

Re: How do I map www.blah.com to a servlet?

2001-04-23 Thread David Crooke
Assuming you just want to "hide" the servlet, mod_rewrite may be what you're looking for, but it could require a bit of work to maintain the facade in the JSP. A popular but inelegant option is to make index.html a static HTML file which throws up a frame, thus obfuscating the URL from the browse

RE: How do I map www.blah.com to a servlet?

2001-04-24 Thread Milt Epstein
et. > > Filip > > > > ~ > > Namaste - I bow to the divine in you > > ~ > > Filip Hanik > > Software Architect > > [EMAIL PROTECTED] > > www.filip.net > > > > > -Original Message----- > > > From: Chris Bailey [mailto:[E

RE: How do I map www.blah.com to a servlet?

2001-04-24 Thread Chris Bailey
On 24 Apr 2001 10:25:42 -0500, [EMAIL PROTECTED] wrote: > On 23 Apr 2001, Chris Bailey wrote: > > > This is what I'm already doing (see the email below) - I map my > > servlet to index.html in web.xml. > > Here's something you can try. I haven't tried it exactly myself, > although I have tried

RE: How do I map www.blah.com to a servlet?

2001-04-24 Thread Milt Epstein
On 24 Apr 2001, Chris Bailey wrote: > On 24 Apr 2001 10:25:42 -0500, [EMAIL PROTECTED] wrote: > > On 23 Apr 2001, Chris Bailey wrote: > > > > > This is what I'm already doing (see the email below) - I map my > > > servlet to index.html in web.xml. > > > > Here's something you can try. I haven't