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: form name=login method=post action=AuthLogin or this form name=login method=post action=./AuthLogin Even better: form name=login method=post action=%=

Re: Tomcat not seeing servlet

2010-02-15 Thread Ugo Ojeda
2010/2/14 David Short dsh...@san.rr.com Thank you Juha. The c:url value='/AuthLogin'/ 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-14 Thread Konstantin Kolinko
2010/2/14 David Short dsh...@san.rr.com:    servlet-mapping        servlet-nameAuthLoginServlet/servlet-name        url-pattern/AuthLogin/url-pattern    /servlet-mapping The above is correct. Login.jsp snippet: form name=login method=post action=/AuthLogin Try this instead: form

RE: Tomcat not seeing servlet

2010-02-14 Thread David Short
Users List Subject: Re: Tomcat not seeing servlet 2010/2/14 David Short dsh...@san.rr.com:    servlet-mapping        servlet-nameAuthLoginServlet/servlet-name        url-pattern/AuthLogin/url-pattern    /servlet-mapping The above is correct. Login.jsp snippet: form name=login method=post

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 explained,

RE: Tomcat not seeing servlet

2010-02-14 Thread David Short
Thank you Juha. The c:url value='/AuthLogin'/ 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

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 Context element for it? (You may not need one.) If there is one, where is it, and what's in it?