Posted on 18/01/2023 12:50:26
Hi Nuno
It is related. At some point a 'security' fix was made to reset ASP.NET_SessionId cookie on logout - frontend and backend. When that is reset, the session is gone and you are logged of.
The setting I referred to is related to backend logoff - that if set to true, it will remove session id, otherwise not - meaning logging off the backend will not log you off from the frontend.
When you logoff from the frontend, this session id is always reset - causing your backend session (all sessions) to expire.
This comes from a security report at some point - a simple fix could be to not reset the session cookies if you are also logged into the backend.
BR Nicolai