HTTP Status 404 - The requested resource not avaliable
843841Jul 2 2003 — edited Sep 23 2003Can you help me?
I have a Testing servlet placed in to different path.
This servlet placed at Tomcat 4.1\webapps\examples\WEB-INF\classes\TestingServlet.class runs well.
(http://localhost:8080/examples/servlet/Testing)
This same servlet placed at Tomcat 4.1\webapps\wpm\WEB-INF\classes\TestingServlet.class = error �HTTP Status 404 � The requested resource (/wpm/servlet/Testing) is not available�.
(http://localhost:8080/wpm/servlet/Testing)
In both web app folders (/examples and /wpm) have the same \WEB-INF\web.xml file .
Part of this web.xml file has this script:
<web-app>
�
<servlet>
<servlet-name>Testing</servlet-name>
<servlet-class>TestingServlet</servlet-class>
</servlet>
�
</web-app>
What I am missing?
jpcamarg