I have set the following property in websphere for the jsession cookie com.ibm.ws.webcontainer.HTTPOnlyCookies.
com.ibm.ws.webcontainer.HTTPOnlyCookies
Any idea how best to test this using Jav
add the following lines to your app String
sessionid = request.getSession().getId(); response.setHeader("SET-COOKIE", "JSESSIONID=" + sessionid + "; secure; HttpOnly");