Re: RE: The right place/time to clean up a session before session time out, or user logoff

2002-09-23 Thread Vernon Wu
I have tried something similar with yours: a object stored in the session and with a HttpSessionBindingListener implementation. When the invalidate method is called in the logoff action, it is too late for the valueUnbound method to retrieve anything from the session since it is invalid alrea

RE: The right place/time to clean up a session before session time out, or user logoff

2002-09-23 Thread Miller, Jason
I have a object representing a user that acts as a proxy into my security framework that implements HttpSessionBindingListener, and the valueUnbound method calls my logout logic, which includes removing the user from the set of currently logged in users, as well as DB updates and some other littl