RE: App reloading classloading issue?

2007-09-28 Thread Caldarale, Charles R
From: bajistaman [mailto:[EMAIL PROTECTED] Subject: App reloading classloading issue? Don't suppose you'd care to give us a hint about the version of Tomcat you're using? The weblogic client libs are placed in $CATALINA_HOME/common/lib. Are you sure the weblogic jars/classes aren't also

Re: App reloading classloading issue?

2007-09-28 Thread Filip Hanik - Dev Lists
The weblogic client libs are placed in $CATALINA_HOME/common/lib. yes, but the class that is trying to be loaded is java.lang.NoClassDefFoundError: weblogic/rmi/extensions/server/Stubbajistaman wrote: does the weblogic/rmi/*server*/... hint that it is trying to load a server class, maybe not

RE: App reloading classloading issue?

2007-09-28 Thread Clinton J. Totten
JoAnn, I'm not sure about the error but have you tried just putting the WAR in the webapps directory $CATALINA_HOME/webapps? -Original Message- From: bajistaman [mailto:[EMAIL PROTECTED] Sent: Friday, September 28, 2007 12:53 PM To: users@tomcat.apache.org Subject: App reloading

Re: App reloading classloading issue?

2007-09-28 Thread bajistaman
Filip Hanik - Dev Lists wrote: The weblogic client libs are placed in $CATALINA_HOME/common/lib. yes, but the class that is trying to be loaded is java.lang.NoClassDefFoundError: weblogic/rmi/extensions/server/Stubbajistaman wrote: does the weblogic/rmi/*server*/... hint that it is

RE: App reloading classloading issue?

2007-09-28 Thread bajistaman
Caldarale, Charles R wrote: From: bajistaman [mailto:[EMAIL PROTECTED] Subject: App reloading classloading issue? Don't suppose you'd care to give us a hint about the version of Tomcat you're using? The weblogic client libs are placed in $CATALINA_HOME/common/lib. Are you sure

RE: App reloading classloading issue?

2007-09-28 Thread bajistaman
Clinton J. Totten wrote: I'm not sure about the error but have you tried just putting the WAR in the webapps directory $CATALINA_HOME/webapps? I tried that but the same error, if i want it to work I have to restart the server. Thanks, Johann -- View this message in context:

RE: App reloading classloading issue?

2007-09-28 Thread Caldarale, Charles R
From: bajistaman [mailto:[EMAIL PROTECTED] Subject: Re: App reloading classloading issue? I get your point but actually the class is part of the classpath. You just mentioned a dirty word. Do you have CLASSPATH set for the Tomcat execution or included that jar in the -cp parameter

RE: App reloading classloading issue?

2007-09-28 Thread bajistaman
Caldarale, Charles R wrote: You just mentioned a dirty word. Do you have CLASSPATH set for the Tomcat execution or included that jar in the -cp parameter for launching Tomcat? (You shouldn't.) If so, that will make the weblogic classes visible to multiple classloaders, which is a Very

Re: App reloading classloading issue?

2007-09-28 Thread bajistaman
It seems that this is a common problem whenever you need to access weblogic from a non weblogic container. First the wl*client.jar files are not enough to do what a weblogic client needs to do so you need to put the whole weblogic.jar (34MB) in your classpath in order to make it work an not

RE: App reloading classloading issue?

2007-09-28 Thread Caldarale, Charles R
From: bajistaman [mailto:[EMAIL PROTECTED] Subject: Re: App reloading classloading issue? Then whenever you need to reload your application you are going to get the java.lang.NoClassDefFoundError: I suspect that the prior instance of the webapp is actually still around, or at least its