Re: HttpSessionListener events after redeployment?

2005-04-05 Thread Joe Riopel
Could you use the isNew() method from HttpSession ? On Apr 5, 2005 4:20 PM, Clute, Andrew [EMAIL PROTECTED] wrote: In my application I like to keep track of all the sessions that are currently active. So, I have a class that implements HttpSessionListener and have a static HashMap that keeps a

RE: HttpSessionListener events after redeployment?

2005-04-05 Thread Clute, Andrew
- From: Joe Riopel [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 4:30 PM To: Tomcat Users List Subject: Re: HttpSessionListener events after redeployment? Could you use the isNew() method from HttpSession ? On Apr 5, 2005 4:20 PM, Clute, Andrew [EMAIL PROTECTED] wrote

Re: HttpSessionListener events after redeployment?

2005-04-05 Thread Mark Thomas
Have a look at javax.servlet.http.SessionActivationListener Clute, Andrew wrote: In my application I like to keep track of all the sessions that are currently active. So, I have a class that implements HttpSessionListener and have a static HashMap that keeps a reference to all the active sessions.