Hello. I have implemented errors handling in ASP.NET MVC site in a way like suggests this post: http://stackoverflow.com/questions/619895/how-can-i-properly-handle-404s-in-asp-net-mvc/620559#620559.
With 404 errors all works fine. But how correctly show user friendly screen for 401 error? They usually do not throw Exception that can be handled inside Application_Error()
but rather action returns HttpUnauthorizedResult. One possible way is to add following code to the end of Application_EndRequest()
method
if (Context.Response.StatusCode == 401)
{
throw new HttpException(401, "You are not authorised");
// or UserFriendlyErrorRedirect(new HttpException(401, "You are not authorised")), witout exception
}
But inside Application_EndRequest()
Context.Session == null, errorController.Execute()
fails because it cannot use default TempDataProvider.
// Call target Controller and pass the routeData.
IController errorController = new ErrorController();
errorController.Execute(new RequestContext(
new HttpContextWrapper(Context), routeData)); // Additional information: The SessionStateTempDataProvider requires SessionState to be enabled.
So, can you suggest some best practices how to 'user friendly handle' 401 in ASP.NET MVC application?
Thanks.