1738

Prev Next

The login timeout for your SES Web session is controlled by default from your IIS Server.  You can revise the idle timeout of your sesssion by revising
specific settings within web.config section.  The default value is 00:02:00 (two minutes).

How to adjust the timeout value:
There is a “loginTimeOut” key in the web.config file located in the SDWeb  folder

`----  Sample web.config section---
 <appSettings>
   <add key="webpages:Version" value="1.0.0.0" />
   <add key="MyUri" value="#WEBSERVER#" />
   <add key="webhelpParameters" value="/#"/>
   <add key="contextHelpDelay" value="800" />
   <add key="contextHelpClose" value="1050" />
   <add key="loginTimeOut" value="15" /><!-- "loginTimeOut" set in minutes for version 6.3 and higher-->

Note:
For Version 6.3 of the web console - accepts a “loginTimeOut” value in minutes.
Changing this value is not officially supported in 6.2 and older versions. In 6.2 it accepts a value of millisecound (eg. 900000).