up vote 39 down vote favorite
68

I am just getting started on ASP.NET MVC so bear with me. I've searched around this site and various others and have seen a few implementations of this.

EDIT: I forgot to mention I am using RC2

Using URL Routing:

routes.MapRoute(
            "Error",
            "{*url}",
            new { controller = "Errors", action = "NotFound" }  //404s
        );

The above seems to take care of requests like this (assuming default route tables setup by initial MVC project): "/blah/blah/blah/blah"

Overriding HandleUnknownAction() in the controller itself:

//404s - handle here (bad action requested
    protected override void HandleUnknownAction(string actionName) {
        ViewData["actionName"] = actionName;
        View("NotFound").ExecuteResult(this.ControllerContext);
    }

However the previous strategies do not handle a request to a Bad/Unknown controller. For example, I do not have a "/IDoNotExist", if I request this I get the generic 404 page from the web server and not my 404 if I use routing + override.

So finally, my question is: Is there any way to catch this type of request using a route or something else in the MVC framework itself?

OR should I just default to using Web.Config customErrors as my 404 handler and forget all this? I assume if I go with customErrors I'll have to store the generic 404 page outside of /Views due to the Web.Config restrictions on direct access. Anyway any best practices or guidance is appreciated.

link|flag
it's 404 error, i would just not bother about it. let it display 404. as definitely user mistyped something. or if it is something thats moved then your application should take that request and do redirect permanent. 404 belongs to webserver not application. you can always customize iis pages for error. – mamu Aug 1 at 4:08

7 Answers

up vote 44 down vote accepted

The code is taken from http://blogs.microsoft.co.il/blogs/shay/archive/2009/03/06/real-world-error-hadnling-in-asp-net-mvc-rc2.aspx and works in ASP.net MVC 1.0 as well

Here's how I handle http exceptions:

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

   ILogger logger = Container.Resolve<ILogger>();
   logger.Error(exception);

   Response.Clear();

   HttpException httpException = exception as HttpException;

   RouteData routeData = new RouteData();
   routeData.Values.Add("controller", "Error");

   if (httpException == null)
   {
       routeData.Values.Add("action", "Index");
   }
   else //It's an Http Exception, Let's handle it.
   {
       switch (httpException.GetHttpCode())
       {
          case 404:
              // Page not found.
              routeData.Values.Add("action", "HttpError404");
              break;
          case 500:
              // Server error.
              routeData.Values.Add("action", "HttpError500");
              break;

           // Here you can handle Views to other error codes.
           // I choose a General error template  
           default:
              routeData.Values.Add("action", "General");
              break;
      }
  }           

  // Pass exception details to the target error View.
  routeData.Values.Add("error", exception);

  // Clear the error on server.
  Server.ClearError();

  // Call target Controller and pass the routeData.
  IController errorController = new ErrorController();
  errorController.Execute(new RequestContext(    
       new HttpContextWrapper(Context), routeData));
}
link|flag
I'd like to add that this is fairly easy to write unit tests for the above code as well. I only had to make a few small changes. +1 – Page Brooks Jun 17 '09 at 18:19
I'm not sure I understand why you're checking for an httpException. isn't the point of this handler to catch - for instance - a NullReferenceException and then GENERATE an http exception. when would Server.GetLastError() ever actually be an HttpException unless you had made an Http call within your actual business logic. i removed this from my implementation but would love to know if it is justified and i missed something – Simon_Weaver Aug 11 '09 at 5:00
4  
update: checking for an http 404 is definitely required, but i'm still not quite sure when you'd ever get a 500. also you need to also explicitly set the Response.StatusCode = 404 or 500 otherwise google will start indexing these pages if you are returning a 200 status code which this code currently does – Simon_Weaver Aug 11 '09 at 8:03
@Simon_Weaver: agreed! This needs to return 404 status codes. It's essentially broken as a 404 solution until it does. Check this: codinghorror.com/blog/2007/03/… – cottsak Apr 5 at 5:21
There is an underlying flaw with this whole suggestion - by the time execution has bubbled up to the Global.asax, too much of the HttpContext is missing. You can not route back into your controllers like the example suggests. Refer to the comments in the blog link at top. – cottsak May 16 at 5:56
up vote 24 down vote

Requirements for 404

The following are my requirements for a 404 solution and below i show how i implement it:

  • I want to handle matched routes with bad actions
  • I want to handle matched routes with bad controllers
  • I want to handle un-matched routes (arbitrary urls that my app can't understand) - i don't want these bubbling up to the Global.asax or IIS because then i can't redirect back into my MVC app properly
  • I want a way to handle in the same manner as above, custom 404s - like when an ID is submitted for an object that does not exist (maybe deleted)
  • I want all my 404s to return an MVC view (not a static page) to which i can pump more data later if necessary (good 404 designs) and they must return the HTTP 404 status code

Solution

I think you should save Application_Error in the Global.asax for higher things, like unhandled exceptions and logging (like Shay Jacoby's answer shows) but not 404 handling. This is why my suggestion keeps the 404 stuff out of the Global.asax file.

Step 1: Have a common place for 404-error logic

This is a good idea for maintainability. Use an ErrorController so that future improvements to your well designed 404 page can adapt easily. Also, make sure your response has the 404 code!

public class ErrorController : MyController
{
    #region Http404

    public ActionResult Http404(string url)
    {
        Response.StatusCode = (int)HttpStatusCode.NotFound;
        var model = new NotFoundViewModel();
        // If the url is relative ('NotFound' route) then replace with Requested path
        model.RequestedUrl = Request.Url.OriginalString.Contains(url) & Request.Url.OriginalString != url ?
            Request.Url.OriginalString : url;
        // Dont get the user stuck in a 'retry loop' by
        // allowing the Referrer to be the same as the Request
        model.ReferrerUrl = Request.UrlReferrer != null &&
            Request.UrlReferrer.OriginalString != model.RequestedUrl ?
            Request.UrlReferrer.OriginalString : null;

        // TODO: insert ILogger here

        return View("NotFound", model);
    }
    public class NotFoundViewModel
    {
        public string RequestedUrl { get; set; }
        public string ReferrerUrl { get; set; }
    }

    #endregion
}

Step 2: Use a base Controller class so you can easily invoke your custom 404 action and wire up HandleUnknownAction

404s in ASP.NET MVC need to be caught at a number of places. The first is HandleUnknownAction.

The InvokeHttp404 method creates a common place for re-routing to the ErrorController and our new Http404 action. Think DRY!

public abstract class LittleAlexController : Controller
{
    #region Http404 handling

    protected override void HandleUnknownAction(string actionName)
    {
        this.InvokeHttp404(HttpContext);
    }

    public ActionResult InvokeHttp404(HttpContextBase httpContext)
    {
        IController errorController = ObjectFactory.GetInstance<ErrorController>();
        var errorRoute = new RouteData();
        errorRoute.Values.Add("controller", "Error");
        errorRoute.Values.Add("action", "Http404");
        errorRoute.Values.Add("url", httpContext.Request.Url.OriginalString);
        errorController.Execute(new RequestContext(
             httpContext, errorRoute));

        return new EmptyResult();
    }

    #endregion
}

Step 3: Use Dependency Injection in your Controller Factory and wire up 404 HttpExceptions

Like so (it doesn't have to be StructureMap):

public class StructureMapControllerFactory : DefaultControllerFactory
{
    protected override IController GetControllerInstance(Type controllerType)
    {
        try
        {
            if (controllerType == null)
                return base.GetControllerInstance(controllerType);
        }
        catch (HttpException ex)
        {
            if (ex.GetHttpCode() == (int)HttpStatusCode.NotFound)
            {
                IController errorController = ObjectFactory.GetInstance<ErrorController>();
                ((ErrorController)errorController).InvokeHttp404(RequestContext.HttpContext);

                return errorController;
            }
            else
                throw ex;
        }

        return ObjectFactory.GetInstance(controllerType) as Controller;
    }
}

I think its better to catch errors closer to where they originate. This is why i prefer the above to the Application_Error handler.

This is the second place to catch 404s.

Step 4: Add a NotFound route to Global.asax for urls that fail to be parsed into your app

This route should point to our Http404 action. Notice the url param will be a relative url because the routing engine is stripping the domain part here? That is why we have all that conditional url logic in Step 1.

        routes.MapRoute("NotFound", "{*url}", 
            new { controller = "Error", action = "Http404" });

This is the third and final place to catch 404s in an MVC app that you don't invoke yourself. If you don't catch unmatched routes here then MVC will pass the problem up to ASP.NET (Global.asax) and you don't really want that in this situation.

Step 5: Finally, invoke 404s when your app can't find something

Like when a bad ID is submitted to my Loans controller:

    //
    // GET: /Detail/ID

    public ActionResult Detail(int ID)
    {
        Loan loan = this._svc.GetLoans().WithID(ID);
        if (loan == null)
            return this.InvokeHttp404(HttpContext);
        else
            return View(loan);
    }

It would be nice if all this could be hooked up in fewer places with less code but i think this solution is more maintainable, more testable and fairly pragmatic.

Thanks for the feedback so far. I'd love to get more.

NOTE: This has been edited significantly from my original answer but the purpose/requirements are the same - this is why i have not added a new answer

link|flag
Dude - i really really like this :) I used to throw Http404Exceptions, etc and handled that in a OnError attribute type thingy .. but this damn good, too :) – Pure.Krome Apr 6 at 1:55
thanks. i hope it can be improved on – cottsak Apr 6 at 5:21
@cottsak buddy, with your StructureMap IoC code .. when (or how) can an HttpException get thrown? A simple example, please? And secondly, why does your code in Step #5 invoke404 and then return EmptyResult?? – Pure.Krome Apr 6 at 14:35
@Krome: #1- "The controller for path '/dfsdf' could not be found or it does not implement IController." is the .Message from requesting the path '/dfsdf' - i guess when a route is not matched, MVC throws a HttpException like this. #2- Step 5 is maybe not an ideal usage example but for now it seems to be ok for me. I need to return the EmptyResult as part of the action. The fact that it's "empty" makes no difference as in the InvokeHttp404 method i re-route again. help? – cottsak Apr 10 at 17:22
1  
Thanks for the full write-up. One addition is that when running under IIS7 you need to add set the property "TrySkipIisCustomErrors" to true. Otherwise IIS will still return the default 404 page. We added Response.TrySkipIiisCustomErrors=true; after the line in Step 5 that sets the status code. msdn.microsoft.com/en-us/library/… – Rick Jun 16 at 15:17
show 9 more comments
up vote 2 down vote

I really like cottsaks solution and think its very clearly explained. my only addition was to alter step 2 as follows

public abstract class LittleAlexController : Controller
{

    #region Http404 handling

    protected override void HandleUnknownAction(string actionName)
    {
        //if controller is ErrorController dont 'nest' exceptions
        if(this.GetType() != typeof(ErrorController))
        this.InvokeHttp404(HttpContext);
    }

    public ActionResult InvokeHttp404(HttpContextBase httpContext)
    {
        IController errorController = ObjectFactory.GetInstance<ErrorController>();
        var errorRoute = new RouteData();
        errorRoute.Values.Add("controller", "Error");
        errorRoute.Values.Add("action", "Http404");
        errorRoute.Values.Add("url", httpContext.Request.Url.OriginalString);
        errorController.Execute(new RequestContext(
             httpContext, errorRoute));

        return new EmptyResult();
    }

    #endregion
}

Basically this stops urls containing invalid actions AND controllers from triggering the exception routine twice. eg for urls such as asdfsdf/dfgdfgd

link|flag
up vote 1 down vote

It looks like this works only on GET requests. If I have an exception which is caused after a POST then this ain't working.

There seems to be an innerexception in the Context, "This operation requires IIS integrated pipeline mode."

Does anybody know how to handle an exception on a post?

link|flag
Sounds like this is something to do with IIS 6 as the integrated pipeline mode only exists in IIS 7. I don't have a solution for you (I use IIS 7 and haven't hit this error), but sounds like a good place to start. – Brian Apr 27 '09 at 15:41
I have notice that it does not catch security error (like posting <script> in a textbox) – Eduardo Molteni Jul 15 '09 at 23:04
up vote 0 down vote

Shay Jacoby:

if you do a url on your example like this:

/Home/About/test/broken

then it doesnt seem to use the general error code that you specify, do you know why this is?

link|flag
up vote 0 down vote

The only way I could get @cottsak's method to work for invalid controllers was to modify the existing route request in the CustomControllerFactory, like so:

public class CustomControllerFactory : DefaultControllerFactory
{
    protected override IController GetControllerInstance(RequestContext requestContext, Type controllerType)
    {
        try
        {
            if (controllerType == null)
                return base.GetControllerInstance(requestContext, controllerType); 
            else
                return ObjectFactory.GetInstance(controllerType) as Controller;
        }
        catch (HttpException ex)
        {
            if (ex.GetHttpCode() == (int)HttpStatusCode.NotFound)
            {
                requestContext.RouteData.Values["controller"] = "Error";
                requestContext.RouteData.Values["action"] = "Http404";
                requestContext.RouteData.Values.Add("url", requestContext.HttpContext.Request.Url.OriginalString);

                return ObjectFactory.GetInstance<ErrorController>();
            }
            else
                throw ex;
        }
    }
}

I should mention I'm using MVC 2.0.

link|flag
up vote -2 down vote

I am getting the following error at

errorController.Execute(new RequestContext(    
       new HttpContextWrapper(Context), routeData));

"The SessionStateTempDataProvider requires SessionState to be enabled."

Googling for a soln. I cam to learn that the error was solved by putting "" in th web.config.

But didnt work in my case. Is it happening for the POST request?

link|flag

Your Answer

get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.