Sessions on restart

2004-11-18 Thread Mark O'Driscoll
Hi,   Using 5.0.28 on Windows2000.   I have a session listener that implements   HttpSessionListener,ServletContextListener,HttpSessionActivationListener,HttpSessionBindingListener   and it works fine in that I am notified of the context start, sessions being added & destroyed.   I am using th

RE: Sessions on restart

2004-11-18 Thread Shapira, Yoav
Hi, >Now when tomcat restarts, the sessions persist OK but I have no way of >knowing the list of active sessions. There will be an activation event for each session restored from disk. If your listener implemented HttpSessionActivationListener, you'd get this event. By monitoring session creati

Re: Sessions on restart

2004-11-18 Thread Mark O'Driscoll
> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Thursday, November 18, 2004 3:14 PM Subject: RE: Sessions on restart Hi, >Now when tomcat restarts, the sessions persist OK but I have no way of >knowing the list of active sessions. There will be an activation event f

Re: Sessions on restart

2004-11-18 Thread Jon Wingfield
;[EMAIL PROTECTED]> Sent: Thursday, November 18, 2004 3:14 PM Subject: RE: Sessions on restart Hi, Now when tomcat restarts, the sessions persist OK but I have no way of knowing the list of active sessions. There will be an activation event for each session restored from disk. If your listener impl

Re: Sessions on restart

2004-11-18 Thread Mark O'Driscoll
That worked fine. Thanks to you both Mark - Original Message - From: "Jon Wingfield" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Thursday, November 18, 2004 3:35 PM Subject: Re: Sessions on restart > Yep. Read the docs