RE: Alias definition in Tomcat standalone

2003-06-11 Thread Phillip Qin
Isn't your context's path the alias? -Original Message- From: Karsten Krieg [mailto:[EMAIL PROTECTED] Sent: June 11, 2003 5:27 AM To: [EMAIL PROTECTED] Subject: Alias definition in Tomcat standalone Hi list! Newbie question: I'm using Tomcat as a standalone webserver (without Apache) a

RE: Alias definition in Tomcat standalone

2003-06-11 Thread Dave Naden
At least two ways: 1) when you define your contexts, you supply an alias for a directory, as in: 2) any servlet can be aliased, by using tags, which map a new name to the servlet class name, and using tags, which map a new URL part to the name defined above. Both of

Re: Alias question

2002-07-08 Thread Andrea
[EMAIL PROTECTED] -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Alias for JSP Files

2002-05-27 Thread Mostafa Al-Mallawani
this is a cheap shot at the problem but u have a mistake in this part: myapp/servlet-name> //it should be /test //there's an extra / before test? >= Original Message From Tomcat Users List <[EMAIL PROTECTED]> = >I was trying to set up the Tomcat 4 in order to create

RE: alias

2002-04-08 Thread Jay Gardner
List Subject: RE: alias I think this is what you are after?? controller_welcome controller event WELCOME controller_welcome /url/whatever/controller?event=WELCOME --Jay Gardner -Original Message

RE: alias

2002-04-08 Thread Jay Gardner
[mailto:[EMAIL PROTECTED]] Sent: Sunday, April 07, 2002 4:38 PM To: Tomcat Users List Subject: RE: alias Actually, its a bit more complicated, so I don't think Jay's solution (quoted below) will work. I am using a security constraint with form based authentication. This means that I have

RE: alias

2002-04-07 Thread Paul Phillips
Actually, its a bit more complicated, so I don't think Jay's solution (quoted below) will work. I am using a security constraint with form based authentication. This means that I have to request a servlet that is in a constrained area. The container forwards the request to a login page outside

RE: alias

2002-04-07 Thread Jay Gardner
Did you try controller controller controller /login Don't worry about the query string being passed in to the servlet. That will be passed by the container from the jsp to the servlet. Hope this helps! --Jay Gardner -Original Message- Fro

Re: alias servlet in Tomcat

2001-02-28 Thread Brett W. McCoy
On Wed, 28 Feb 2001, AC wrote: > Does anyone know how to configure it so all I need is > ? We solved this problem by having an index.jsp in the root directory that does a little bit of validation (checking for cookie support, etc.), then redirects to the real login servl

Re: alias servlet in Tomcat

2001-02-28 Thread Chandra Goliva - Temp
R - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Re: Alias question

2000-12-31 Thread Jacob Kjome
You have nothing telling tomcat to map a URL to your registered servlet. You would do that like this: hello foo.bar.baz.HelloWorld hello /hello note that the "" does not have anything to do with mapping a URL. It is strictly for referring to a specifi

Re: Alias question

2000-12-31 Thread Koen Maes \(BE-day.com\)
What do the logs say ?? Isnt this HANDLER THREAD PROBLEM : java.lang.NullPointerException ?? - Original Message - From: "Pete Ehli" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, December 31, 2000 12:34 AM Subject: Re: Alias question > Yes exactly

Re: Alias question

2000-12-30 Thread Pete Ehli
Yes exactly and it generates a server 500 error. - Original Message - From: "William Brogden" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, December 30, 2000 8:39 AM Subject: Re: Alias question > > > Pete Ehli wrote: > > > > Hel

Re: Alias question

2000-12-30 Thread William Brogden
Pete Ehli wrote: > > Hello group -- I am trying to access a servlet via an alias. This I thought > was done through the web.xml file in my directory > webapps\practice\Web-inf\web.xml - practice is of course the name of my web > application. I have changed only my web.xml file to run my servlet

Re: Alias tag doesn't work (T4)

2000-12-26 Thread Craig R. McClanahan
Christian Parpart wrote: > Hi all > > the documentation tells, that you're able to declare > aliases for host names. > > > > ... > > > Now this host should be accessable from > http://www.myhost.com and > http://myhost.com. > > but the second doesn't work? Is that a bug or is > somethi

Re: Alias tag doesn't work (T4)

2000-12-26 Thread Jacob Kjome
A word of caution. Netscape 3.xx and 4.xx have a problem where they will not read cookies properly when the domain is not legal. That is, they treat: www.myhost.com and myhost.com as two different domains IE and Opera are both kinder and gentler with this and treat them as the same. I re