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:

 

    <servlet>

        <servlet-name>AuthLoginServlet</servlet-name>

        <servlet-class>servlets.AuthLoginServlet</servlet-class>

    </servlet>

 

    <servlet-mapping>

        <servlet-name>AuthLoginServlet</servlet-name>

        <url-pattern>/AuthLogin</url-pattern>

    </servlet-mapping>

 

 

 

Login.jsp snippet:

 

<form name="login" method="post" action="/AuthLogin">

 

 

 

Error message:

HTTP Status 404 - /AuthLogin

  _____  

type Status report

message /AuthLogin

description The requested resource (/AuthLogin) is not available.

  _____  

Apache Tomcat/6.0.20

 

Configuration

Tomcat 6.0.20 (port 80)

XP Pro

 

Any help would be greatly appreciated.

 

Reply via email to