I've just started working with Tomcat (version 5.5) and am having the following problem;
I have a jsp page (..\webapps\Norms\jsp\process.jsp) with the following forward statement.
<jsp:forward page="/servlet/DBHandler"/>
The app is started with the URL:
http://127.0.0.1:8080/Norms/forms/register.html
The register.html file (...\webapps\Norms\forms\register.html) has the following <form:
<form action="/Norms/jsp/forms/process.jsp" method=post>
I have a servlet program: DBHandler.java (not in a package) that I've compiled and put copies of the class file in many locations in a folder called servlet.
I get a 404 error message when I load the html file, submit the form to the jsp page and it tries to forward to the servlet.
Estado HTTP 404 - /Norms/servlet/DBHandler (in Spanish)
Do I need entries in any xml files or in a tld file or where do I put the class file so that the jsp engine will find it.
Thanks,
Norm