Re: Detecting when a session is destroyed

2011-09-20 Thread Matt Schmidt
Alright, thanks! On Tue, Sep 20, 2011 at 11:28 AM, Martin Grigorov wrote: > On Tue, Sep 20, 2011 at 6:27 PM, Martin Grigorov > wrote: > > a new session is created > unless there is "remember me" functionality in place > > > > On Tue, Sep 20, 2011 at 6:22 PM, Matt Schmidt > wrote: > >> Ahhh, so

Re: Detecting when a session is destroyed

2011-09-20 Thread Martin Grigorov
On Tue, Sep 20, 2011 at 6:27 PM, Martin Grigorov wrote: > a new session is created unless there is "remember me" functionality in place > > On Tue, Sep 20, 2011 at 6:22 PM, Matt Schmidt wrote: >> Ahhh, so what happens if the user closes the browser, launches the browser >> and logs in again befor

Re: Detecting when a session is destroyed

2011-09-20 Thread Martin Grigorov
a new session is created On Tue, Sep 20, 2011 at 6:22 PM, Matt Schmidt wrote: > Ahhh, so what happens if the user closes the browser, launches the browser > and logs in again before the first session expires? > > On Tue, Sep 20, 2011 at 11:16 AM, Martin Grigorov wrote: > >> The method will be met

Re: Detecting when a session is destroyed

2011-09-20 Thread Matt Schmidt
Ahhh, so what happens if the user closes the browser, launches the browser and logs in again before the first session expires? On Tue, Sep 20, 2011 at 11:16 AM, Martin Grigorov wrote: > The method will be method when the respective session expires. > So close the browser, wait session-timeout min

Re: Detecting when a session is destroyed

2011-09-20 Thread Martin Grigorov
The method will be method when the respective session expires. So close the browser, wait session-timeout minutes and it will fire. On Tue, Sep 20, 2011 at 6:12 PM, Matt Schmidt wrote: > I am trying to override WebApplication.sessionDestroyed() to perform an > action any time a user's session is

Detecting when a session is destroyed

2011-09-20 Thread Matt Schmidt
I am trying to override WebApplication.sessionDestroyed() to perform an action any time a user's session is terminated, either by manually logging out, session expiring, or closing the browser. But unfortunately sessionDestroyed() doesn't seem to get called when the browser is closed. Is there any