You get the following error every time the user executes create_navigation(), right
javax.servlet.ServletException: Class `abcServlet' was not found in classpath.
This is due to a class exception. Move all your classes to /WEB-INF/classes and on your HTML document, remove the <body> tags. When there are frames there should be no body tags.
In your script you have:
at com.caucho.server.http.Application.instantiateServlet(Application.java:3191) at com.caucho.server.http.Application.createServlet(Application.java:3099) at com.caucho.server.http.Application.loadServlet(Application.java:3060) at com.caucho.server.http.QServletConfig.loadServlet(QServletConfig.java:435) at com.caucho.server.http.Application.getFilterChainServlet(Application.java:2804) at com.caucho.server.http.Application.buildFilterChain(Application.java:2760) at com.caucho.server.http.Invocation.service(Invocation.java:313) at com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:135) at com.caucho.server.http.HttpRequest.handleRequest(HttpRequest.java:246) at com.caucho.server.http.HttpRequest.handleConnection(HttpRequest.java:163) at com.caucho.server.TcpConnection.run(TcpConnection.java:139)
Move your main program to /WEB-INF/classes and hopefully the browser will execute your program and frames.
|