Re: How to replace jar which was already loaded?

2007-07-17 Thread Pid
: Tuesday, July 10, 2007 2:18 AM Subject: How to replace jar which was already loaded? Hi I have a worker.jar in my webapp. User could upload a new worker.jar replacing it. And I don't want to restart the tomcat. How can I implement this? Thanks

Re: How to replace jar which was already loaded?

2007-07-12 Thread santa T
Thanks 2007/7/10, David Delbecq [EMAIL PROTECTED]: http://tomcat.apache.org/tomcat-5.5-doc/config/context.html -- reloadable Set to true if you want Catalina to monitor classes in /WEB-INF/classes/ and /WEB-INF/lib for changes, and automatically reload the web application if a change is

Re: How to replace jar which was already loaded?

2007-07-10 Thread Johnny Kewl
have fun - Original Message - From: santa T [EMAIL PROTECTED] To: users@tomcat.apache.org Sent: Tuesday, July 10, 2007 2:18 AM Subject: How to replace jar which was already loaded? Hi I have a worker.jar in my webapp. User could upload a new worker.jar replacing it. And I don't

Re: How to replace jar which was already loaded?

2007-07-10 Thread Manivannan Palanichamy
Try manager url, http://localhost:8080/manager/reload?path=/app_name (app_name is your web application name. ). it will reload the specific application alone. You will be prompted for manager login, which you have already configured in tomcat/conf/tomcat-users.xml -- Manivannan.Palanichamy (@)

Re: How to replace jar which was already loaded?

2007-07-10 Thread David Delbecq
http://tomcat.apache.org/tomcat-5.5-doc/config/context.html -- reloadable Set to true if you want Catalina to monitor classes in /WEB-INF/classes/ and /WEB-INF/lib for changes, and automatically reload the web application if a change is detected. This feature is very useful during application

How to replace jar which was already loaded?

2007-07-09 Thread santa T
Hi I have a worker.jar in my webapp. User could upload a new worker.jar replacing it. And I don't want to restart the tomcat. How can I implement this? Thanks.