TimeOutExpiredSessions Function
The TimeOutExpiredSessions function is implemented as a
supplement to the time-out functionality in the ValidateAndUpdateSession function. The TimeOutExpiredSessions function calls the TimeOutExpiredSessionsINT
function, which runs through the active Session records and time out those Sessions which
have not had any requests within the specified time out interval. This is the case
for all Sessions where the users did not actively end their Sessions themselves - they
just did not request the web application anymore.The TimeOutExpiredSessions
procedure should be scheduled to run periodically, e.g. once a day.
The TimeOutExpiredSessions function uses the the SetTimeOutInterval
function scoped by the ValidateAndUpdateSession
function to define its time-out interval.
Inheritance