Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Setting Session Timeout Period
Is there a way I can set the inactivity lease period on a per-session basis?
✍: FYICENTER.com
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.
2007-04-03, 5739👍, 0💬
Popular Posts:
What is the difference between Session State and ViewState? ViewState is specific to a page in a ses...
What Are Data Pump Export and Import Modes? - Oracle DBA FAQ - Loading and Exporting Data Data pump ...
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...
What are unadjusted function points and how is it calculated? Unadjusted function points = ILF + EIF...
What are the types of variables x, y, y and u defined in the following code? #define Atype int* type...