vote up 1 vote down star
1

I am writing an application in GWT and I need to detect when a user navigates away from my application or when he closes the browser window (onUnload event) and do a logout (session invalidation and few other cleanup tasks). The logout action is performed by a servlet.

I am currently doing this by hooking into the onUnload() event and opening a new window pointed to the logout servlet.

Is there a better way to do this? Any other suggestions are welcome.

flag

Duplicate of this question. stackoverflow.com/questions/875380/… – Marc W May 20 at 15:07
That question is not a duplicate of this one. – apphacker May 20 at 15:13
The answer does answer this question though - you can't tell when the user has stopped using your site. The closest you can do is to tell when the user hasn't sent a new request to the site for a given period of time. – David Dorward May 20 at 15:17

2 Answers

vote up 3 vote down check

Looks like GWT does have an event for exactly this.

ClosingEvent.

Looks like you need to implement a ClosingHandler

link|flag
You should be able to send one last logout request to your server in your handler. – Carnell May 20 at 15:41
I just ran a quick test to create a ClosingHandler and registered it. I made a simple one that just displays an alert. The code is getting fired when the tab/window is closed as well as when I browse to another page outside of the app. – Carnell May 20 at 19:33
1  
I am aware of this WindowCloseListener (equivalent of ClosingEvent in GWT 1.5), but was in the assumption that since a RequestCallback object is mandatory to make a Request, it may cause some problem on the callback events. But I tried with a RequestCallback doing nothing on the onResponseReceived event, and it is working fine. Thanks for the response. – sarav May 21 at 8:07
vote up 2 vote down

Why not just make a very short lived session cookie that is reset with each page load, then add a tracking cookie. When the user returns you notice the tracking cookie but no session cookie. Expire the session and clear everything up at that point.

Pop up blockers will prevent your session clean up when it blocks the onUnload window open, because this is something spammers use.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.