Re: classloader issue on jboss3.2.2 for tomcat4.1

2005-09-16 Thread Steve Dodge
It doesn't see any classes in any of your jars? I was using JBoss 3.2.2 back in 2003 and had the same issue. Once I set the web loader to false, I realized that some utility classes were getting loaded from jars deployed in other wars. Effectively, now each webapp has its own classloader.

RE: ClassLoader issue

2002-12-09 Thread Cox, Charlie
have you looked at tomcat's classloader document? http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html Charlie -Original Message- From: Ola Berg [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 8:15 AM To: Tomcat Users List Subject: ClassLoader issue

Re: ClassLoader issue

2002-12-09 Thread Ola Berg
have you looked at tomcat's classloader document? http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html Charlie Yes, and it basically talks about the class loaders that Tomcat uses. But I want to be able to load classes from an jar file at an arbitrary URL specified at

Re: Classloader issue

2000-12-16 Thread Craig R. McClanahan
Try using ClassLoader.getResourceAsStream() instead of ClassLoader.getSystemResourceAsStream(). The method you are using says "go use the system class loader", and bypasses any resources that are in your jar file under WEB-INF/lib. Craig McClanahan Juergen Baumann wrote: I try to load files