0

Razor 構文を使用した MVC4 プロジェクトの例外処理に関して、次のチュートリアルに従いました

それに従った後でもランタイム エラーが発生するため、たとえば間違った URL を入力すると、エラー ページへのリダイレクトが行われません。そうすると、例外がログに記録され、チュートリアルで追加したメソッドをすべて通過しますが、最終的には次のページに移動します。

http://[ipaddress]:9880/Error?aspxerrorpath=/test

そして私に示します:

Runtime Error

Description: An exception occurred while processing your request. Additionally, another exception occurred while executing the custom error page for the first exception. The request has been terminated.  

チュートリアルと私のプロジェクトの唯一の大きな違いは、追加のセグメント言語を使用することです。

エラー処理のために次のコードを実装しました。

私のrouteConfigファイルで:

        routes.MapRoute(
            name: "FailWhale",
            url: "{language}/FailWhale/{action}/{id}",
            defaults: new { language = "en-US", controller="Error" ,action = "FailWhale", id = UrlParameter.Optional }
        );

私のfilterConfigで:

    public class HandleAndLogErrorAttribute : HandleErrorAttribute
    {
        public override void OnException(ExceptionContext filterContext)
        {
            var exception = filterContext.Exception;
            var httpException = exception as HttpException;

            if (httpException != null) LogGateway.For(this).Fatal("Fatal Http exception occured --- " + httpException.Message);
            else LogGateway.For(this).Fatal("Fatal exception occured --- " + exception.Message);

            base.OnException(filterContext);
        }
    }

私のweb.config:

<customErrors mode="On" defaultRedirect="Error">
  <error statusCode="404" redirect="en-US/FailWhale" />
</customErrors>

私のエラーコントローラー:

    public ActionResult FailWhale()
    {
        Response.StatusCode = 404;
        Response.TrySkipIisCustomErrors = true;

        LogGateway.For(this).Error("Fatal Http exception occured --- " + Response.StatusCode + ": " + Response.StatusDescription);

        return View();
    }

私はおそらくここで何かを監督していますか?

4

1 に答える 1