Re: Tomcat not seeing servlet

2010-02-15 Thread Ugo Ojeda
2010/2/14 David Short > Thank you Juha. The " works nicely. > > -Original Message- > From: Juha Laiho [mailto:juha.la...@iki.fi] > Sent: Sunday, February 14, 2010 8:49 AM > To: users@tomcat.apache.org > Subject: Re: Tomcat not seeing servlet > > On 02/14/

Re: Tomcat not seeing servlet

2010-02-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Konstantin, On 2/14/2010 8:53 AM, Konstantin Kolinko wrote: > Try this instead: > > > > or this > Even better: "> This will encode the URL with the session id if necessary, and pre-pend any context path necessary. As pointed our by another p

RE: Tomcat not seeing servlet

2010-02-14 Thread David Short
Thank you Juha. The " works nicely. -Original Message- From: Juha Laiho [mailto:juha.la...@iki.fi] Sent: Sunday, February 14, 2010 8:49 AM To: users@tomcat.apache.org Subject: Re: Tomcat not seeing servlet On 02/14/2010 06:21 PM, David Short wrote: > "./AuthLogin" and

Re: Tomcat not seeing servlet

2010-02-14 Thread Juha Laiho
On 02/14/2010 06:21 PM, David Short wrote: "./AuthLogin" and "AuthLogin" still don't work. It works with the fully qualified path "http://yourserver:port/yourwebapp/AuthLogin"; or "../../AuthLogin" Ah, yes, that completes the picture. And below I'll somewhat repeat what Konstantin already expl

RE: Tomcat not seeing servlet

2010-02-14 Thread David Short
] Sent: Sunday, February 14, 2010 5:53 AM To: Tomcat Users List Subject: Re: Tomcat not seeing servlet 2010/2/14 David Short : >     > >        AuthLoginServlet > >        /AuthLogin > >     The above is correct. > Login.jsp snippet: > Try this instead: or this

Re: Tomcat not seeing servlet

2010-02-14 Thread Konstantin Kolinko
2010/2/14 David Short : >     > >        AuthLoginServlet > >        /AuthLogin > >     The above is correct. > Login.jsp snippet: > Try this instead: or this The mappings in web.xml are relative to your webapp, so you'll have to call http://yourserver:port/yourwebapp/AuthLogin unless

RE: Tomcat not seeing servlet

2010-02-13 Thread Caldarale, Charles R
> From: David Short [mailto:dsh...@san.rr.com] > Subject: Tomcat not seeing servlet > > description The requested resource (/AuthLogin) is not available. Where is your webapp deployed? Do you have a element for it? (You may not need one.) If there is one, where is it, and

Tomcat not seeing servlet

2010-02-13 Thread David Short
Hello, I'm having a problem with Tomcat no seeing my servlet. I have the servlet defined and mapped in my web.xml file. I've been Googling this for hours and every example I find instructs to use the following setup. Web.xml snippet: AuthLoginServlet servlets.Au