DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7682>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7682 Unable to initiate filter properly if Filter class is loaded by Catalina System Classloader [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From [EMAIL PROTECTED] 2002-04-02 16:28 ------- This is not a bug ... it is user error. If you consult the class loader documentation shipped with Tomcat (http://localhost:8080/tomcat-docs/class-loader-howto.html), you will see that the system class loader is *above* the common class loader that contains servlet.jar. Therefore, any classes loaded from the system class loader will not be able to find the servlet API classes, so you won't be able to put filters or servlets there. PLEASE do what the documentation tells you to do! Put your shared classes into the standard directories ("lib" or "common/lib") and you will not have any problems like this. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>