How to protect application pools from session serialization exceptions?

后端 未结 3 1950
逝去的感伤
逝去的感伤 2021-02-09 05:52

We\'re using an Out-of-Process Session Provider (ScaleOut) for an ASP.NET application and we\'ve noticed that when an object that\'s not correctly setu

3条回答
  •  走了就别回头了
    2021-02-09 06:02

    I fixed this by simply removing the SessionEnd methods completely. It isn't enough to remove the contents of the methods as Asp.net searches for the existence of the method using reflection and then runs the offending code.

提交回复
热议问题