I've been doing everything that I've read and done before, but for some reason I can not get any
servlets to work now. Here's a directory structure:
C:\resin\webapps\ROOT\
C:\resin\webapps\ROOT\WEB-INF\classes\
Under the WEB-INF directory, I put a web.xml that has:
<servlet> <servlet-name>TestServlet</servlet-name> <servlet-class>TestServlet</servlet-class> </servlet>
I have a TestServlet.java and TestServlet.class file under WEB-INF/classes
When I do
http://localhost:6969/servlet/TestServlet, I get a 404 error stating that path doesn't exist (have
Tomcat running on 8080).
I had servlets working previously, but it seems once I stuck a ROOT.war into webapps, I can't get any servlet to work. Any suggestions where I need to start looking?
Thanks!
Jason