Setup session timeout in Organize Space

We have a requirement to setup a session timeout of 4 hours on inactive sessions. I have looked through the documentation and haven't found the process. Has anyone else implemented this? Would we just add the following to he web.config under InfoShareCS folder on the app sever?

<system.web>
<sessionState timeout="240"></sessionState>
</system.web>

Thanks in advance...

emoji
Parents Reply
  • Hi Akheil Jain

    It looks like there’s no way to force a user to log out without doing it manually.

    A user will see the login page again in the following scenarios:

    1. They log out manually.
    2. They close and reopen their browser. This works because all authentication session cookies are deleted when the browser is closed.
    3. Their authentication cookies for OrganizeSpace, AccessManagement, and possibly the Identity Provider expire.

    The third scenario is likely what you’re looking for. You already know how to set the timeout for OrganizeSpace cookies. The cookie timeout for the Identity Provider depends on specific Identity Provider configuration.

    However, the main issue is that the AccessManagement cookie timeout is set to 10 hours, and this cannot be changed via configuration files - it requires a code change. This is why a user doesn’t see the login page when their OrganizeSpace cookies expire. AccessManagement remembers the user (user auth session cookies) and does sign in automatically (Single Sign-On).

    emoji
Children