Hi,
I have the following simple servlet running under tomcat 404, java 1.4:
Unfortunately the init-procedure is called twice ???
Under tomcat 401 this was only done once.
Did I miss any setting in server.xml ?
Chris
public class test extends HttpServlet implements SingleThreadModel {
private static final String CONTENT_TYPE = "text/html";
public void init(ServletConfig config) throws ServletException {
super.init(config);
System.err.println("Initial call");
...
}
.....
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>