SSL Cookie Not Used
How could I make this j2ee session secure over ssl communication since I got SSL cookie not used error from PCI compliance report?
Please look at the below code fragments..give an idea to resolve the issue.
<CFSET httpReq = createObject("Java","javax.servlet.http.HttpServletRequest")>
<CFSET httpReq = GetPageContext().getRequest()>
<CFSET httpSession = createObject("Java","javax.servlet.http.HttpSession")>
<CFSET httpSession = httpReq.getSession()>
It creates jsessionid as cookie, it shows the following when i viewed from Mozilla browser
Name : JSESSIONID
Send For : Any type of connection
However, the CFID, and CFTOKEN created as secure since i have put SECURE="yes" in cfcookie tag.
Please throw some light on this.
