chirpyform
Programmer
I have installed Tomcat 4.1.27 and everything works as I would wish only if I do a reload then the error message:
javax.servlet.ServletException: the wrapper can't find the class servlet Serso or a class in which it is dependant.
Why is this?
All I am doing is using a web page that has 11 textfields and a button.The form in the web page does the action POST and my servlet Serso recuperates the information and runs a program. The response from the program is written in the servlet to a web page:
out.println("<html>"
out.println("<body>"
out.println(param+Call.startSearch(param));
resp.setContentType("text/html"
out.println("<form action=../form.html>"
out.println("<input type=submit value='Return' name=btnG>"
out.println("</form>"
out.println("</body>"
out.println("</html>"
If anyone has any ideas I would be grateful. I have already lost 2 days because of this!
Chris
javax.servlet.ServletException: the wrapper can't find the class servlet Serso or a class in which it is dependant.
Why is this?
All I am doing is using a web page that has 11 textfields and a button.The form in the web page does the action POST and my servlet Serso recuperates the information and runs a program. The response from the program is written in the servlet to a web page:
out.println("<html>"
out.println("<body>"
out.println(param+Call.startSearch(param));
resp.setContentType("text/html"
out.println("<form action=../form.html>"
out.println("<input type=submit value='Return' name=btnG>"
out.println("</form>"
out.println("</body>"
out.println("</html>"
If anyone has any ideas I would be grateful. I have already lost 2 days because of this!
Chris