I have the following HandleError filter on my controller:

[HandleError(ExceptionType = typeof(ArgumentException), View = "DestinationError")]

I've set-up the Web.Config so that customErrors are on. The problem I'm having is that the HandleError filter is working fine, when I run the app locally out of Visual Studio, but when I deploy it to the server all I get is a 500 Internal Server Error, indicating the Error view cannot be found.

Has anyone come across this before, I'm suspicious that routing may be the root cause of the problem (hoho). The site gets deployed into a directory in the web root, rather than into the wwwroot itself, so perhaps IIS cannot locate the error file.

Any help on this issue would be appreciated.

link|improve this question
feedback

4 Answers

To answer my own question the magic is to turn off HTTP Errors in IIS. I'm not delighted in this workaround, so if anyone has any better ideas, I'd love to hear them.

link|improve this answer
feedback

Otherwise you can use the Web.Config configuration and set it to the expected controller's actions. Like this:

    <customErrors mode="On" defaultRedirect="/Error">
        <error statusCode="404" redirect="/Error/NotFound"/>
    </customErrors>

Then imagine you have an Error controlller (/Error) which points out to an index action

public class ErrorController : Controller
{
    [AcceptVerbs(HttpVerbs.Get)]
    public ActionResult Index()
    {
        Response.StatusCode = (int)HttpStatusCode.InternalServerError;
        return View("Index");
    }

    [AcceptVerbs(HttpVerbs.Get)]
    public ActionResult NotFound()
    {
        Response.StatusCode = (int)HttpStatusCode.NotFound;
        return View("NotFound");
    }
}
link|improve this answer
feedback

What if you try the following?

Response.TrySkipIisCustomErrors = true;
link|improve this answer
feedback

I had the same problem after migrating to MVC 3 RC. Managed to get around it by adding the layout / master page.

@inherits System.Web.Mvc.WebViewPage<System.Web.Mvc.HandleErrorInfo>

@{
    View.Title = "Error";
    Layout = "~/Views/Shared/_Layout.cshtml";
}

Now the internal server error is gone, but I think it's a bug somewhere.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown