1

I know how to view cookies in IE8, which is described under How do you view session cookies in Internet Explorer? but is there any way to view "httponly" cookies in IE8?

Community
  • 1
  • 1
Julian
  • 81
  • 1
  • 1
  • 6

1 Answers1

1

I recommend you use Fiddler; allow you to view all Request and Response data.

MikeLim
  • 1,189
  • 1
  • 9
  • 11
  • I've tried Fiddler2,but it seems that there's some other problem: I've seen the Set-Cookie Header in the response headers section which is used to store the session id, but it's not working --- that's why I hope to find some way to see if the cookie is properly set. – Julian May 20 '13 at 14:57
  • Check the cookies tab for the Response that sets your cookie. Your cookie should have a "HttpOnly", e.g. Set-Cookie: acad=zWp; expires=Wed, 21-Aug-2013 05:19:54 GMT; path=/; HttpOnly – MikeLim May 21 '13 at 05:21
  • I've had checked that, and the response was just ok. Actually, the problem I came across seems to be caused by domain port. I used Port 3000 for local testing, and this leaded to the failure, which means that in ie8 set-cookie can only work fine with port-80-hosts, I guess.. – Julian May 21 '13 at 06:40