I have an existing Grails web application that is in production and has a 30 minute session timeout. We run Tomcat (tcServer).
When the user authenticates and on certain pages I want to make several periodic ajax requests to the server that do not extend this 30 minute session timeout, so that the session does not time out.
The question is similar to this asp.net unanswered question , but none of the answers will be made there, and that is in the Java / Tomcat area.
How to execute an authenticated AJAX request without resetting the tomcat session timeout?
Is there some kind of filtering mechanism or url matching that I can use to exclude requests from extending the session timeout?
java ajax tomcat grails session-timeout
Colin harrington
source share