Unable to create asp.net session on a cookieless web application

后端 未结 2 495
南旧
南旧 2021-01-16 07:24

I have a cookieless web application based on asp.net 4.5.


<         


        
相关标签:
2条回答
  • 2021-01-16 08:01

    Thanks to @AdrianWragg, I found it! The redirection was done through a reverse proxy but this server had an ISAPI filter that was removing the session Id from the request, after I removed the ISAPI filter everything worked just fine.

    Wrong ISAPI filter

    0 讨论(0)
  • 2021-01-16 08:12

    Can you try to change your configuration in the web.config to:

    <sessionState mode="InProc" cookieless="false" timeout="10"/>
    

    ?

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