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=12280>.
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=12280

Bogus exception stack trace

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WONTFIX



------- Additional Comments From [EMAIL PROTECTED]  2002-09-10 17:27 -------
Tomcat's WebAppLoader class expects the webapp's class loader to be a subclass
of java.net.URLClassLoader. The URLClassLoader class has a getClasspath() method
that is used to build a classpath string for the Jasper compiler.

If the webapp's class loader is not a subclass of URLClassLoader, then Tomcat's
WebAppLoader class will attempt to invoke the class loader's getClasspath()
method via reflection.

In your particular instance, you are using a custom class loader as the webapp's
class loader. Since this custom class loader has no getClasspath() method nor
does it subclass URLClassLoader, Tomcat generates the warning to warn that the
classpath for the webapp's class loader (and its parent class loaders) will be
missing from any Jasper compilations.

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to