Re: Container calling destroy() method

2004-04-15 Thread QM
On Thu, Apr 15, 2004 at 02:42:06PM -0600, Yansheng Lin wrote: : How about this approach? Override the destroy() method in custom servlet so : that it doesn't notify the container that the servlet has been marked : "destroyed". I got a bad feeling about this one though:). Is there any reason to d

RE: Container calling destroy() method

2004-04-15 Thread Yansheng Lin
though:). -Yan -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: April 15, 2004 14:01 To: Tomcat Users List Subject: RE: Container calling destroy() method Hi, >Oh even uglier, send a request to the servlet >every >10 minutes. This will not guarantee that

RE: Container calling destroy() method

2004-04-15 Thread Shapira, Yoav
Hi, >Oh even uglier, send a request to the servlet >every >10 minutes. This will not guarantee that the servlet will always be >available, i.e.,loaded, and ready for use all the time, but it will prevent >the destroy() method being called on the servlet. No it won't, unless the servlet always t

RE: Container calling destroy() method

2004-04-15 Thread Yansheng Lin
the destroy() method being called on the servlet. -Yan -Original Message- From: QM [mailto:[EMAIL PROTECTED] Sent: April 14, 2004 06:37 To: Tomcat Users List Subject: Re: Container calling destroy() method On Wed, Apr 14, 2004 at 11:16:09AM +0530, [EMAIL PROTECTED] wrote: : How do I

Re: Container calling destroy() method

2004-04-14 Thread QM
On Wed, Apr 14, 2004 at 11:16:09AM +0530, [EMAIL PROTECTED] wrote: : How do I control the webcontainer from calling the destroy() method of the : servlets or JSP? Where do I make the appropriate settings? Quoting the Servlet Spec v2.3, p 26: - - - 8< - - - - - - - - - - - - - SRV.2.3.4 End of Ser

Container calling destroy() method

2004-04-13 Thread UmamaheswarKalluru
Hi, How do I control the webcontainer from calling the destroy() method of the servlets or JSP? Where do I make the appropriate settings? Thank you, Best Regards, Uma - To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona