| Author |
Session managing in JSF
|
Adrian Bustos
Greenhorn
Joined: Apr 25, 2011
Posts: 8
|
|
Hi Everyone, this is my first post.
I found myself in a pickle regarding session managing in JSF.
For the sake of argument let's say I've a bean that returns the server'current time
Then there's a page that invokes this method every seccond
This works great, but every time this method is invoked the session's lastAccessedTime property is updated.
I need to void this to happend, but only for this specific method invokation.
How can I make that possible?
web.xml
faces-config.xml
Thanks in advance!
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 14487
|
|
The session timeout counter is automatically maintained by the application server and cannot be modified by application code.
However, if you want to post an AJAX-refreshed display element and still timeout when no useful work has been done, you can always maintain your own countdown timer in the AJAX action processor. When your timer drops to zero, manually log out the user.
You may want to install a servlet filter or phase listener to reset your counter when legitimate page requests are received so that each page doesn't require its own manual counter reset logic.
|
Customer surveys are for companies who didn't pay proper attention to begin with.
|
 |
 |
|
|
subject: Session managing in JSF
|
|
|