Martin Vlk wrote:
> 
> Hi there,
> please do anybody know how to list active HTTP sessions on Tomcat server?
> What I need to do is to track remaining lifetime for the sessions and
> to perform custom action on the session when certain time limit is reached.
> Thanks a lot
> --vlcak
> 

There is no way to do this directly.
You need to implement the HttpSessionBindingListener interface
somewhere and use those methods to track HttpSession objects
as they are added and destroyed.

-- 
WBB

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to