Re: Tomcat does not Auto-reload.

2002-06-12 Thread kf platypus
That's due in part to the servlet architectures caching mechanism. Typically we added a method to each servlet to destroy it. I don't know if there's a better method than that though as I know I would like to see one because they bith seem a bit ghetto. Regards! From: Rui Oliveira [EMAIL

Re: Tomcat does not Auto-reload.

2002-06-12 Thread rsequeira
Set the reloadable attribute of the Context element to true (if you haven't done that already). RS Rui Oliveira [EMAIL PROTECTED] on 06/12/2002 09:26:23 AM Please respond to Tomcat Users List [EMAIL PROTECTED] To:[EMAIL PROTECTED] cc: Subject:Tomcat does not Auto-reload.

RE: Tomcat does not Auto-reload.

2002-06-12 Thread FEDERICO MARTIN LARA
I have to delete the temporal files in work directory, then I don?t to restart Tomcat again. Try this. -Mensaje original- De: Rui Oliveira [mailto:[EMAIL PROTECTED]] Enviado el: miercoles, 12 de junio de 2002 16:26 Para: [EMAIL PROTECTED] Asunto: Tomcat does not Auto-reload. Hello,

RE: Tomcat does not Auto-reload.

2002-06-12 Thread FEDERICO MARTIN LARA
You can also place the jar file of the Oracle driver in the WEB-INF/lib directory of the jakarta context that you are using at the time. This works with the MySQL jar driver. -Mensaje original- De: Rui Oliveira [mailto:[EMAIL PROTECTED]] Enviado el: miercoles, 12 de junio de 2002 16:26

RE: Tomcat does not Auto-reload.

2002-06-12 Thread Rui Oliveira
PROTECTED] Subject: Re: Tomcat does not Auto-reload. That's due in part to the servlet architectures caching mechanism. Typically we added a method to each servlet to destroy it. I don't know if there's a better method than that though as I know I would like to see one because they bith seem a bit

RE: Tomcat does not Auto-reload.

2002-06-12 Thread kf platypus
]] Sent: quarta-feira, 12 de Junho de 2002 15:29 To: [EMAIL PROTECTED] Subject: Re: Tomcat does not Auto-reload. That's due in part to the servlet architectures caching mechanism. Typically we added a method to each servlet to destroy it. I don't know if there's a better method than

Re: Tomcat does not Auto-reload.

2002-06-12 Thread Louis Voo
/ /Engine /Service - Original Message - From: Rui Oliveira [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Wednesday, June 12, 2002 3:49 PM Subject: RE: Tomcat does not Auto-reload. When is this destroy method invoked? If I copy the newer version of the servlet to the WEB

Re: Tomcat does not Auto-reload.

2002-06-12 Thread RNivas
Class loader in any application/Webserver works under the mechanism designed. Most of the time Classloader for the tomcat does not reload the object of new servlet, untill you restart the tomcat. Its general problem with, tomcat. Addition to above read server.xml, you will find like...