How to configure automatic log out?

<< Click to Display Table of Contents >>

Navigation:  Help > Troubleshooting > Using RMS >

How to configure automatic log out?

Check the web.config file of the wPage application

   <authentication mode="Forms">

     <forms loginUrl="Login.aspx"

protection="All"

timeout="1440"

name=".ASPXAUTH"

path="/"

requireSSL="false"

slidingExpiration="true"

defaultUrl="Default.aspx"

cookieless="UseDeviceProfile"

enableCrossAppRedirects="false" />

  </authentication>

 

timeout

User will be logged out after the defined time (in minutes).

Default is 1440 min = 1 Day

slidingExpiration

Sliding expiration resets the expiration time for a valid authentication if a request is made and more than half of the timeout interval has elapsed.