【发布时间】:2017-04-12 02:09:06
【问题描述】:
你好..
I am trying to fixing Cookie without the secure flag in jboss 5.1
<myJBossServerInstancePath>/deploy/jbossweb.sar/context.xml
and also added
response.setHeader("SET-COOKIE", "JSESSIONID=" + session.getId() + ";httpOnly");
response.setHeader("SET-COOKIE", "JSESSIONID=" + session.getId() + "; secure");
仍然缺少安全标志。我的项目是Jboss 5.1和java 1.6,我的错误在哪里?
【问题讨论】:
标签: java jakarta-ee cookies jboss jboss5.x