RE: Servlets deployment directory location

2002-10-29 Thread Peter Lee
Hi, Suppose I have this servlet \WEBAPPS\ROOT\WEB-INF\CLASSES\HelloServlet for versions 4.0.6 and before , I could use http://localhost:8080/servlet/HelloServlet; but now under 4.1.12, it is no longer working. It just cannot find it at all. However, normal HTML pages can still be accessed

RE: Servlets deployment directory location

2002-10-29 Thread Robert L Sowders
Lee [EMAIL PROTECTED] 10/29/2002 12:01 AM Please respond to Tomcat Users List To: [EMAIL PROTECTED] cc: Subject:RE: Servlets deployment directory location Hi, Suppose I have this servlet \WEBAPPS\ROOT\WEB-INF\CLASSES\HelloServlet for versions 4.0.6

RE: Servlets deployment directory location

2002-10-29 Thread John B
Suppose I have this servlet \WEBAPPS\ROOT\WEB-INF\CLASSES\HelloServlet for versions 4.0.6 and before , I could use http://localhost:8080/servlet/HelloServlet; but now under 4.1.12, it is no longer working. It just cannot find it at all. However, normal HTML pages can still be

RE: Servlets deployment directory location

2002-10-28 Thread Shapira, Yoav
Hi, The WEB-INF/classes and WEB-INF/lib directories are where you can deploy servlets and other compiled Java things for your web application. This is not a tomcat-specific structure, it's part of the Servlet Specification. And it hasn't changed from tomcat 4.0 to 4.1. However, some other