I got it to work by puttiing the program DBHandler in package: forms and added the following to the web.xml file in Norms/WEB-INF/
Code:
<servlet>
<servlet-name> DBHandler </servlet-name>
<servlet-class> forms.DBHandler </servlet-class>
</servlet>
<servlet-mapping>
<servlet-name> DBHandler </servlet-name>
<url-pattern> /servlet/DBHandler </url-pattern>
The path to the class file is:
"C:\Archivos de programa\Apache Software Foundation\Tomcat 5.5\webapps\Norms\WEB-INF\classes\forms\DBHandler.class"
Bookmarks