how can I share an asp.net session between http and https

后端 未结 4 750
无人及你
无人及你 2020-11-29 08:06

I read that a page which runs under an https connection cannot share an InProc Session (based on cookies) with another page (or the same for that matter) running under regul

相关标签:
4条回答
  • 2020-11-29 08:12

    IIS setting In the IIS properties window, under the ASP tab –> Session Properties, there is a setting for “New ID on Secure Connections”

    I fixed this intermittent issue for myself by setting this to false.

    0 讨论(0)
  • 2020-11-29 08:27

    If any of the above solution does not work try this. I have cracked this out after doing research of a couple of days.

    app.UseCookieAuthentication(new CookieAuthenticationOptions
    {
        ...
        ...
        CookieSecure = CookieSecureOption.Never
    });
    
    0 讨论(0)
  • 2020-11-29 08:28

    Searching for the problem doesn't turn up much chatter about it so far, still looking.

    Edit: okay finding some stuff now.

    Right it seems that it will work fine if both sets of pages are in the same application/website.

    So I'd go ahead and carry on, feeling reassured.

    0 讨论(0)
  • 2020-11-29 08:34

    From MSDN:

    When a user moves back and forth between secure and public areas, the ASP.NET-generated session cookie (or URL if you have enabled cookie-less session state) moves with them in plaintext, but the authentication cookie is never passed over unencrypted HTTP connections as long as the Secure cookie property is set.

    So basically, the cookie can be passed over both HTTP and HTTPS if the Secure property is set to false.

    I have avoided this issue by adding this to my Global.asax file:

    void Session_Start(object sender, EventArgs e) 
    {
        if (Request.IsSecureConnection) Response.Cookies["ASP.NET_SessionID"].Secure = false;
    }
    

    This means that if the Session cookie is created over HTTP, it will only be accessible over HTTPS.

    0 讨论(0)
提交回复
热议问题