Search code examples
javasessionservletstimeoutwicket

Time to timeout session


Is there a way to find out how long the session of the user remains valid ( until it times-out)?

I would like to show this time on a page.

I know how to set the timeout, but could not find how to get the current time to time-out.


Solution

  • I think you should track the time with plain JavaScript in the browser and reset with every Ajax/WebSocket call.

    You cannot track it at the server because to check the time you need to make a request and this will renew the session.