1. Place the servlet in a package other than the default. 2. Make sure that your mapping in the web.xml is correct. 3. Make sure thast your URL matches that mapping.
Ok here is what I know have ********** URL calling servlet = http://localhost:8080/testTomcat/index.jsp action = "../com/test/servlet.test" (I have tried different things here) ********** WEB.XML <servlet> <servlet-name>test</servlet-name> <servlet-class>com.test.servlet.test</servlet-class> </servlet>