Hi,
I created a
servlet which included in a package com.abc.web.Checkin and the class is CheckinServlet.
I created a dir "abc" under /var/tomcat4/webapps/. So, /var/tomcat4/webapps/abc/index.jsp will be shown when I browsed it at
http://localhost:8080/abc/index.jsp. In the index.jsp, I have a form action=/abc/servlet/com.abc.web.Checkin.CheckinServlet
And the CheckinServlet.class was placed in /var/tomcat4/webapps/abc/WEB-INF/classes/com/abc/web/Checkin/CheckinServlet.class.
However, the browser returns that there is no such page:
http://localhost:8080/abc/servlet/com.abc.web.Checkin.CheckinServlet Why and how can I fix this problem? Where should I place the servlet and be defined in form action?
Thanks
Andrew