.NET 2.0 Web App Authentication Failing: “The ticket supplied was invalid”

后端 未结 5 898
名媛妹妹
名媛妹妹 2021-01-23 19:18

I have a .NET 4.0 application with a 2.0 application as a child. The web applications are not in a multi-server environment; only one server is involved in serving these reques

5条回答
  •  没有蜡笔的小新
    2021-01-23 19:52

    There is also one more cause of this problem. Even on the same machine, same IIS and same .NET framework if one of your applications has

    
    

    then sharing authentication cookie will not work.

    Removing requestValidationMode solves the problem. But sometimes you cannot do it and it needs to stay there. I'm yet to discover what to do in such situation

提交回复
热议问题