views:

36

answers:

0

Every time we go into https, the cookie fields get lost but not the cookie value. For example: 1) Response.cookies["key"].value = "x"; // after going to https, consecutive request contains this value. 2) Response.cookies["key"]["field1"] = "x" // the cookie exists but all its fields get lost.

  • The cookie fields works perfectly in all the parts of the site.
  • path, domain, issecure is setted as default.
  • The certificate is not valid because its due date is for 2/2/2009. While the first scenario works perfect, we dont understand why we dont have the same luck with the second one. If the certificate is not valid, why is working fine with cookie values and not with fields?

Anyway, thanks in advance. Alan.