Re: Do idle servlets get unloaded/reloaded?

2006-01-24 Thread Bill Barker
"Blair Cooper" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I have a servlet running on Tomcat 5.5. If it sits idle for a while and >then > I hit it, the init() method gets called again. "autoDeploy" is set to > false. > Is this expected behavior? > > It isn't unless your servl

Re: Do idle servlets get unloaded/reloaded?

2006-01-24 Thread Frank W. Zammetti
Hi Blair, On Tue, January 24, 2006 2:41 pm, Blair Cooper said: > I have a servlet running on Tomcat 5.5. If it sits idle for a while and > then > I hit it, the init() method gets called again. "autoDeploy" is set to > false. > Is this expected behavior? As per the servlet spec, the container can

Do idle servlets get unloaded/reloaded?

2006-01-24 Thread Blair Cooper
I have a servlet running on Tomcat 5.5. If it sits idle for a while and then I hit it, the init() method gets called again. "autoDeploy" is set to false. Is this expected behavior? If this is expected, shouldn't destroy() get called at some point prior to the init()? The problem I'm having