IE8 loses cookies when opening a new window after a redirect

后端 未结 1 451
臣服心动
臣服心动 2021-01-13 00:08

I\'m using Internet Explorer 8 beta 2.

  1. Client performs POST on http://alpha/foo

  2. Server responds with redirect to http://beta/bar

相关标签:
1条回答
  • 2021-01-13 00:51

    I believe that IE8 uses a separate process for each window. If you're using session cookies, the new process will start with a fresh session and therefore won't be able to submit the session cookies received by the other process. Can you try using persistent cookies and see what happens?

    From http://www.microsoft.com/windows/internet-explorer/beta/readiness/developers-existing.aspx#lcie

    Loosely-coupled Internet Explorer (LCIE) is an architectural effort to improve the browser by separating its components and loosening their interdependence: most notably, it is an attempt to isolate the Internet Explorer frame and its tabs into separate processes. In Internet Explorer 8, this isolation will bring about improved performance and scalability, as well as more potent methods to recover from problems like disk or system failure.

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