I'm trying to read cookie value from a JSP:
Cookie[] cookies = request.getCookies();
This seems to be working fine over http:// But fails to read over https:// call. Trying to see if I'm missing something here.
I'm trying to read cookie value from a JSP:
Cookie[] cookies = request.getCookies();
This seems to be working fine over http:// But fails to read over https:// call. Trying to see if I'm missing something here.