InvokerServlet is disabled by default in Tomcat 4.1.12 onwards for
security reasons. So either you can uncomment the following lines from
${TOMCAT_HOME}/conf/web.xml or include these lines in
${TOMCAT_HOME}/webapps/<your-context>/WEB-INF/web.xml,
<servlet-mapping>
<servlet-name>invoker</servlet-name>
<url-pattern>/servlet/*</url-pattern>
</servlet-mapping>
Thanks,
Ganesh.
[EMAIL PROTECTED]
17-Jan-2003 11:25
Please respond to "Tomcat Users List" <[EMAIL PROTECTED]>
To: tomcat-user
cc:
Subject: Sevlets not seen
Greetings!
This has got to be so easy I'm missing something. :-((
I just installed the latest releases of Apache and Tomcat. All of the
examples in Tomcat work great.
I copied the HelloWorldExample to /webapps/apress/WEB-INF/classes/
I put this in the server.xml file:
<Host name="localhost" debug="0" appBase="webapps"
unpackWARs="true" autoDeploy="true">
<Context path="/apress" docBase="apress" debug="9" reloadable="true"
/>
I put this in the web.xml file in WEB-INF
<web-app>
<servlet>
<servlet-name>login</servlet-name>
<servlet-class>chapter2.login</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<servlet-name>HelloWorldExample</servlet-name>
<servlet-class>HelloWorldExample</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
</web-app>
Yet when I http://localhost:8080/apress/servlet/HelloWorldExample
I get HTTP Status 404
What's the easy part I'm missing?
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>