配置项目时出现,检测到在集成的托管管道模式下不适用的 ASP.NET 设置的解决方法
方法一:修改应用程序池托管管道模式至经典模式
方法二,修改web.config
<httpModules>
<add name="AuthenticationModule" type="ECI.SSO.Library.AuthenticationModule, ECI.SSO.Library"/>
</httpModules>
</system.web>
变更为
<system.webServer>
<modules>
<add name="AuthenticationModule" type="SSO.Library.AuthenticationModule, SSO.Library"/>
</modules>
</system.webServer>
</configuration>