DO NOT REPLY [Bug 23564] - Tomcat 4.1.24: Dynamic loading classes in Tomcat causes java.lang.UnsatisfiedLinkError

2003-11-21 Thread bugzilla
gzilla/show_bug.cgi?id=23564 Tomcat 4.1.24: Dynamic loading classes in Tomcat causes java.lang.UnsatisfiedLinkError [EMAIL PROTECTED] changed: What|Removed |Added Stat

DO NOT REPLY [Bug 23564] New: - Tomcat 4.1.24: Dynamic loading classes in Tomcat causes java.lang.UnsatisfiedLinkError

2003-10-02 Thread bugzilla
gzilla/show_bug.cgi?id=23564 Tomcat 4.1.24: Dynamic loading classes in Tomcat causes java.lang.UnsatisfiedLinkError Summary: Tomcat 4.1.24: Dynamic loading classes in Tomcat causes java.lang.UnsatisfiedLinkError Product: Tomcat 4 Version: 4.0

Re: Loading classes

2002-01-16 Thread costinm
I had similar or worse problems - and I tried all the tricks I could think of. The only solution is to copy the .jar files in CATALINA/server/lib. I think build.xml does that automatically. If you do that,Class.forName should work fine. Using jk as a webapp ( without any additional configuration

Re: Loading classes

2002-01-16 Thread Remy Maucherat
> Remy Maucherat wrote: > No, except it seems that > ct.getLoader().getClassLoader()loadClass(channelclassname); throws a > "java.lang.NullPointerException". > > What should I use to load a class? The engine has no loader. Using Class.forName should do it. Remy -- To unsubscribe, e-mail:

Re: Loading classes

2002-01-16 Thread jean-frederic clere
Remy Maucherat wrote: > > > Hi, > > > > I have some problem to load classes in JkConnector.java. > > I have added the following code: (ct comes from Container > > ct=service.getContainer();) > >Class channelclass = > > ct.getParentClassLoader().loadClass(channelclass

Re: Loading classes

2002-01-16 Thread jean-frederic clere
"Clere, Jean-Frederic" wrote: > > Hi, > > I have some problem to load classes in JkConnector.java. > I have added the following code: (ct comes from Container > ct=service.getContainer();) >Class channelclass = > ct.getParentClassLoader().loadClass(channelclassname)

Re: Loading classes

2002-01-16 Thread Remy Maucherat
> Hi, > > I have some problem to load classes in JkConnector.java. > I have added the following code: (ct comes from Container > ct=service.getContainer();) >Class channelclass = > ct.getParentClassLoader().loadClass(channelclassname); > But it allows throws the follo

Loading classes

2002-01-16 Thread jean-frederic clere
Hi, I have some problem to load classes in JkConnector.java. I have added the following code: (ct comes from Container ct=service.getContainer();) Class channelclass = ct.getParentClassLoader().loadClass(channelclassname); But it allows throws the following: +++ java.