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, 5614👍, 0💬
Popular Posts:
How To Avoid the Undefined Index Error? - PHP Script Tips - Processing Web Forms If you don't want y...
How do we create DCOM object in VB6? Using the CreateObject method you can create a DCOM object. You...
What is the significance of Finalize method in .NET? .NET Garbage collector does almost all clean up...
Which one of the following statements is TRUE in regard to overloading the ++ operator? 1 You cannot...
How can we implement singleton pattern in .NET? Singleton pattern mainly focuses on having one and o...