In my web.config (IIS6.1 asp.net 4.0):
<system.web>
<authentication mode="None"/>
<httpCookies httpOnlyCookies="true" requireSSL="true" />
</system.web>
Browsing to localhost/whatever using https works fine. All requests complete successfully. My problem is that the cookies I get don't have the 'secure' flag set. The HTTP flag is set.
How do I get the Secure flag? My implementation of IPrincipal?
Thanks.