I keep getting following error in my JSF application when I leave app sitting in browser for some time, then try using it again;
com.ibm.websphere.servlet.session.UnauthorizedSessionRequestException: SESN0008E: A user authenticated as anonymous has attempted to access a session owned by user:localRealm/uid=testUser,ou=People,o=internet.
My Liberty settings.xml file has following settings that could be related:
<ltpa expiration="1200" />
<webAppSecurity logoutOnHttpSessionExpire="true" singleSignonEnabled="true" />
My web.xml has
<session-config>
<session-timeout>60</session-timeout>
</session-config>
What is causing this error and how to resolve it?