7

我有一个Asp.Net 4.0 Web Forms应用程序在某些时候会引发以下错误

“'/MySiteDev' 应用程序中的服务器错误”。

这个错误只是偶尔出现。并且此错误不会触发Application_Error中处理的事件Global.asax

由于这不会触发 Application_Error,那么还有哪些其他可能的地方会记录此错误事件?除了事件查看器还有什么可用的?

有什么方法可以找出 ASP.Net 框架处理的异常?

注意:customErrors mode="Off"。还runAllManagedModulesForAllRequests="true"

更新

参考如何:处理应用程序级错误

Global.asax 文件中定义的错误处理程序将仅捕获在 ASP.NET 运行时处理请求期间发生的错误。例如,如果用户请求在您的应用程序中没有出现的 .aspx 文件,它将捕获错误。但是,如果用户请求不存在的 .htm 文件,它不会捕获错误。对于非 ASP.NET 错误,您可以在 Internet 信息服务 (IIS) 中创建自定义处理程序。服务器级错误也不会调用自定义处理程序。

您不能直接输出来自 Global.asax 文件的请求的错误信息;您必须将控制权转移到另一个页面,通常是 Web 窗体页面。将控制权转移到另一个页面时,使用 Transfer 方法。这会保留当前上下文,以便您可以从 GetLastError 方法获取错误信息。

处理错误后,您必须通过调用 Server 对象(HttpServerUtility 类)的 ClearError 方法来清除它。

代码

    protected void Application_Error(object sender, EventArgs e)
    {
        //Get the exception object
        Exception exception = Server.GetLastError().GetBaseException();

        //Get the location of the exception
        string location = Request.Url.ToString();
        if (!String.IsNullOrEmpty(location))
        {
            string[] partsOfLocation = location.Split('/');
            if (partsOfLocation != null)
            {
                if (partsOfLocation.Length > 0)
                {
                    location = partsOfLocation[partsOfLocation.Length - 1];
                }
            }

            //Maximum allowed length for location is 255
            if (location.Length > 255)
            {
                location = location.Substring(0, 254);
            }
        }

        string connectionString = ConfigurationManager.ConnectionStrings[UIConstants.PayrollSQLConnection].ConnectionString;
        ExceptionBL exceptionBL = new ExceptionBL(connectionString);

        exceptionBL.SubmitException(exception.Message, location);
        Log.Logger.Error(exception.Message);

    }

配置

<system.web>

<compilation debug="true" targetFramework="4.0" />
<pages validateRequest="false"></pages>
<httpRuntime requestValidationMode="2.0" />
<customErrors mode="Off"/>
<authentication mode="Windows"></authentication>
<identity impersonate="true" userName="domain\xxxx" password="xxxx"/>

</system.web>

<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<httpErrors errorMode="Detailed" />
</system.webServer>

更新的参考文献

  1. Application_Error 未触发
  2. Global.asax 事件 Application_Error 未触发
  3. Application_Error 不会触发?
  4. 如何:处理应用程序级错误
4

2 回答 2

3

检查事件查看器中的日志,它应该记录服务器级别和应用程序级别的错误。

应用程序错误处理程序可能没有处理该事件,因为它发生在您的应用程序成功启动并创建上下文之前。因此,似乎有应用程序配置或服务器配置停止处理请求。

或者,应用程序在请求生命周期中足够早地遇到问题,即使在启动之后,它也会“挂起”,直到服务器决定终止进程(例如,可能以@MikeSmithDev 提到的 StackOverflowException 的形式)。

于 2013-02-14T14:15:16.767 回答
1

这是一个load balanced带有 A 和 B 框的环境。

部署 Web 应用程序的团队确认,在其中一个框中,配置文件未正确复制。

我认为,该应用程序在击中 A 框并在 B 框失败时运行良好。我认为,由于配置不存在,因此无法调用Application_Error.

请告诉您是否有不同的意见。

注意:重新部署时问题不存在

于 2013-02-19T10:17:27.627 回答