I used the below code in WEB-INF/web.xml
but JSESSIONID
cookie is still not secure. I am doing something wrong because in my application we are using Spring 3.x for session management. Any advise or guidance would be greatly appreciated.
<session-config>
<cookie-config>
<http-only>true</http-only>
<secure>true</secure>
</cookie-config>
</session-config>