Tomcat 3.2.1 1) Is it possible to put (and access directly) a JSP among servlets located beneath WEB-INF/classes ? 2) Is it possible to package (and access directly) a JSP along with other classes located beneath WEB-INF/classes ? or 3) Is JSP access generally restricted to directories above WEB-INF ? All my servlets inherit from a superclass that provides pooled connections, sophisticated logging and collects some statistical data (time of first servlet instantiation, concurrent requests, duration of request handling etc.) The superclass is contained in a package along with a connection manager, a logger class etc. I want to build an admin web interface for that superclass (or the deriving servlets respectivly), providing output of formatted statistics and dynamic adjustment of some values (pool size, log level etc.). I would like to implement that web interface using JSP technology in a quick and dirty manner - which is sufficient for admin purposes :-) I struggled with web.xml for hours without success, but I am a JSP newbie. Thanks in advance, Wolfgang Stein
