.net – 请求的表单认证失败 原因:提供的票已过期

前端之家收集整理的这篇文章主要介绍了.net – 请求的表单认证失败 原因:提供的票已过期前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的事件日志充斥着这个消息:

Forms authentication Failed for the
request. Reason: The ticket supplied
has expired.

我认为这是当人们超时而不是注销时发生的。

首先,这不是一个错误,它的类型:信息

我不想要这个信息,如何停止ASP.NET登录

我的应用程序不是web-farmed,并且使用静态机器键。

解决方法

这是解决方案:
<?xml version="1.0"?>
<configuration>
   <system.web>
      <healthMonitoring>
         <rules>
            <remove name="Failure Audits Default" />
         </rules>
      </healthMonitoring>
   </system.web>
</configuration>

请注意,这将阻止注销所有System.Web.Management.WebFailureAuditEvent事件,其中涵盖事件范围4005-4011。可能有一种方法可以删除4005,但是这个解决方案对我来说足够好。

这些是帮助我的链接

> http://msdn.microsoft.com/en-us/library/ms998325.aspx
> http://msdn.microsoft.com/en-us/library/ms998306.aspx

原文链接:https://www.f2er.com/html/233276.html

猜你在找的HTML相关文章