Hi all,
I re-installed Tomcat 4.1.18 again this morning and now have the original problem. Note that the same setup worked fine under 4.0.4.
The problem that remains is getting the servlets to work.
================================
I changed CATALINA_HOME to C:\Program Files\Apache\Tomcat 4.1 (to match the directory structure).
JAVA_HOME Points to C:\J2sdk1.4.1
================================
Here are some problem details:
When I do a
http://localhost:8081/hello.jsp, all works fine.
(I changed the port to 8081 because of some conflict with 8080)
-----------------------
When I try to do a JSP page in a directory under root, all works fine too. Something like:
http://localhost:8081/webcalendar/Login.jsp -----------------------
The problem comes in when this JSP tries to transfer control to a servlet, like it did successfully under 4.0.4. The URL that appears from the JSP code is:
http://localhost:8081/servlet/webcalendar.Controller But here I get a 404 error -- "The requested resource (/servlet/webcalendar.Controller) is not available."
This "Controller.class" file is under WEB-INF\classes\webcalendar, so it should be found (like it was under 4.0.4).
Additionally, I can't run any other servlets either. It's like Tomcat can't find them eventhough they're in the same directory path (relative to the 4.1.18 installation as with the 4.0.4 installation).
This is quite strange and doesn't seem to match any threads posted.
Any ideas???
Thanks again for all the help up to this point.
-- Mike