Re: modifying shutdown behaviour?

2003-11-14 Thread Jon Wingfield
me in the direction of an example? Thanks, Patrick -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Tuesday, 28 October 2003 1:16 AM To: Tomcat Users List Subject: RE: modifying shutdown behaviour? Howdy, When the $CATALINA_HOME/bin/shutdown.sh script is called I

Re: modifying shutdown behaviour?

2003-11-14 Thread Christopher Schultz
Patrick, I would like to implement a ServletContextListener, but I can't find an example of the tags I need to add to my web.xml file to register a class as a listener. Can anyone point me in the direction of an example? I just snooped the webapp 2.3 DTD (http://java.sun.com/dtd/web-app_2_3.dtd),

RE: modifying shutdown behaviour?

2003-11-13 Thread Patrick Herrera
:[EMAIL PROTECTED] Sent: Tuesday, 28 October 2003 1:16 AM To: Tomcat Users List Subject: RE: modifying shutdown behaviour? Howdy, When the $CATALINA_HOME/bin/shutdown.sh script is called I would like a particular web application to release its resources cleanly and perform tidy You could

RE: modifying shutdown behaviour?

2003-10-27 Thread Bodycombe, Andrew
You could implement a ServletContextListener. The contextDestroyed() method will be called when your application is about to be removed. -Original Message- From: Julie McCabe [mailto:[EMAIL PROTECTED] Sent: 27 October 2003 13:30 To: [EMAIL PROTECTED] Subject: modifying shutdown

RE: modifying shutdown behaviour?

2003-10-27 Thread Shapira, Yoav
] Sent: Monday, October 27, 2003 8:27 AM To: 'Tomcat Users List' Subject: RE: modifying shutdown behaviour? You could implement a ServletContextListener. The contextDestroyed() method will be called when your application is about to be removed. -Original Message- From: Julie McCabe [mailto

Re: modifying shutdown behaviour?

2003-10-27 Thread Christopher Schultz
Julie, When the $CATALINA_HOME/bin/shutdown.sh script is called I would like a particular web application to release its resources cleanly and perform tidy You could implement a ServletContextListener. The contextDestroyed() method will be called when your application is about to be removed.

RE: modifying shutdown behaviour?

2003-10-27 Thread Shapira, Yoav
Howdy, When the $CATALINA_HOME/bin/shutdown.sh script is called I would like a particular web application to release its resources cleanly and perform tidy You could implement a ServletContextListener. The contextDestroyed() method will be called when your application is about to be