I have implemented a session timeout warning using javascript that simply asks the user if they want to extend their session or logout. The problem is that this is for an intranet portal where power users will often have several browser windows or tabs open at the same time to the application. Currently, they will be prompted that they are about to be logged out from every browser window. How can I make the code smarter to detect that they are actively using another browser session?
views:
2566answers:
4You'd have to check the session state on the server using Ajax and keep track of all the open sessions/windows the user has. You'd then be able to target only one of the available sessions with the log out warning.
In response to your comment:
Don't use the built-in session mechanism, devise your own using an server-side presistent array or a database log.
No, nothing in the HTTP request tells you how many browsers are open, but you can assign your own sessionID cookie as the user opens each browser window. Make an Ajax call to the server, see if the user has timed-out, and if you're the lowest (or last) entry in the session log then you're the browser that gets the warning.
Would this work?
Store a Javascript cookie and check that to determine if the session has been extended in another tab?
looks like this does work...
You can't count on all tabs/windows to be part of the same Session, because they could be spawned and contained within separate processes and you don't have much control over that.
But if your code references a Javascript cookie, you can check your seudo-session state via a postback (synchronous or AJAX). But then you're depending on cookies being enabled on the user's browser.