I have a requirement within the same web application to set 2 session timeouts.

60 minutes for regular users and 3 hours for admin users.

I am told this is not possible and I will need to host a separate web app for the admins.

Is there any workaround?

UPDATE: Thanks to Bozho and Kurt's replies - I have a followup question.

Does session.setMaxInactiveInterval() override the value of session timeout set via web.xml ?

link|improve this question

As per your update: no, it doesn't and you have to (re)set it on every request. A Filter is the best place for this. – BalusC Aug 5 '10 at 12:45
Ah - Thanks BalusC – shinynewbike Aug 5 '10 at 12:51
The Java Servlet specification seems to indicate that set setMaxInactiveInterval does indeed override the session-timeout value in web.xml. – laz Aug 5 '10 at 13:16
feedback

2 Answers

up vote 5 down vote accepted

You can try session.setMaxInactiveInterval(int interval)

link|improve this answer
I think your replys was marginally quicker than Kurt – shinynewbike Aug 5 '10 at 12:52
feedback

When I look at the HttpSession interface, I see the following method.

setMaxInactiveInterval(int interval): Specifies the time, in seconds, between client requests before the servlet container will invalidate this session.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.