Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Current »

After a period of inactive time user is signed out automatically. The time it takes is configurable using web.config.

Step-by-step guide

Follow these steps to alter automatic logout after inactive period.

  1. Find web.config which should be located at C:\inetpub\wwwroot\AssertWeb

  2. Find the setting <sessionState> and alter the time span, which states time out period in minutes

  3. Restart IIS


This is how web.config may look like:


<system.web>
   <sessionState mode="InProc" timeout="120" />
</system.web>

Note that there is a max timeout. In version 4.2.0 it is 120 minutes, and in version 4.2.1 240 minutes.

Beware that a reinstallation may overwrite the web.config file!




  • No labels