Upon testing the application on an older version of Firefox (v42) as per requirement, I encountered an issue. I made sure to enable the Httponly and secure attributes in my web.xml file:
<session-config>
<session-timeout>30</session-timeout>
<cookie-config>
<http-only>true</http-only>
<secure>true</secure>
</cookie-config>
</session-config>
While everything functioned correctly when accessed with newer versions of Firefox/Chrome, I faced a problem with the old version of Firefox (v42). In this case, the session would expire immediately after logging in with my credentials.
I am curious about the cause behind this behavior and whether there is a workaround to address it for older browser versions.