DEVFYI - Developer Resource - FYI

Is there a way I can set the inactivity lease period on a per-session basis?

JSP Interview Questions and Answers


(Continued from previous question...)

36. Is there a way I can set the inactivity lease period on a per-session basis?

Typically, a default inactivity lease period for all sessions is set within your JSPengine admin screen or associated properties file. However, if your JSP engine supports the Servlet 2.1 API, you can manage the inactivity lease period on a per-session basis.
This is done by invoking the HttpSession.setMaxInactiveInterval() method, right after the session has been created.

(Continued on next question...)

Other Interview Questions