Session Timeout

Looking for WET v3.1?

WET v4.0 is now the current version. There is a new location for the current page in WET v3.1.

Purpose

Create an inactivity timeout that warns users when their session is about to expire.

Overview

This plugin helps web page owners by providing session timeout and inactivity timeout functionality. When a user requests a page with this plugin implemented their session will begin. After the specified session period, they will be notified that their session is about to timeout. At this point, they will have the option to remain logged in by clicking "Continue session", or signing out by clicking "End session now".

At anytime during the session, if the user remains idle for a specified amount of time, they will be notified that they're session is about to timeout. In either case, if the user does not respond to the timeout notification within a specified amount of time, once they click either "Continue session" or "End session now" they will be automatically redirected to the sign out page.

The plugin is setup using the following HTML:

<span class="wb-sessto" data-wet-boew='{"inactivity": 1200000, "reactionTime": 30000, "sessionalive": 1200000, "logouturl": "./", "refreshCallbackUrl": "./"}'></span>

This allows you to configure the plugin:

  • inactivity: inactivity period of time after which the modal dialog will appear (default 20 minutes).
  • reactionTime: period of time the user has to perform an action once the modal dialog is displayed (default 3 minutes).
  • sessionalive: period of time for the session to stay alive until the modal dialog appears (default 20 minutes).
  • logouturl: URL that users are sent to when the session has expired.
  • refreshCallbackUrl: URL used to perform an ajax refresh. Must be a viewless page that returns "true" to indicate session is still valid.

The only required parameter is logouturl, all other fields are optional. The default plugin code is:

<span class="wb-sessto" data-wet-boew='{logouturl: "./"}'></span>

Note: The inactivity, reactionTime and sessionalive parameters are set in milliseconds. For help with the time values, use this time converter.

Note: Your sessionalive and inactivity parameters should be equal to your web server session alive time minus the reactionTime time. If you set your sessionalive time and inactivity time to the same as your web server without taking into consideration the reactionTime time then the session will have ended by the server as soon as the popup appears to extend the session.

How do I use it?

Add the following to the page:

<span class="wb-sessto" data-wet-boew='{logouturl: "./"}'></span>

Try it out!

This page has a 30 seconds inactivity timeout period. You also have 30 seconds to confirm if you want to keep the session alive. Please wait for the prompt to appear.

Date modified: