でsign.jsp
、私は次のように書いています。これにより、ユーザーがすでにログインしている場合は、すぐにそのユーザーに転送されます。home page
<%
try{
HttpSession session1 = request.getSession(false);
if(session1.getAttribute("authenticated")!=null &&
session1.getAttribute("authenticated").equals(true))
{
response.sendRedirect("userhome.jsp");
}
else{
// users have to login here
}
%>
セキュリティスキャンはでそれを伝えてMissing HttpOnly Attribute in Session Cookie
いsign.jsp
ます。
私が設定する場合: <Context useHttpOnly="true">
...
</Context>
の :C:\Program Files\Apache Software Foundation\Apache Tomcat 6.0.20\conf
その後、私の問題は解決されますか、それとも他に何をしなければなりませんか?どんな提案でも大歓迎です