I am use MVC2 with IIS7. I try to use below code to return some fixed exception message to user.
THe issue is that in my localhost or dev web server, this works well. However, when we deploy it to PPE(Pro-Product Environment) server, when exception happened, it just give a response saying: "500 - Internal server error.There is a problem with the resource you are looking for, and it cannot be displayed". BTW, in the PPE server, we set it as https . And the PPE is operated by the Opearation team, so i cannot debug on it.
Any help is highly appreciated! Thank you!
protected override void OnException(ExceptionContext filterContext) { _logger.Log("BaseController_OnException", filterContext.Exception, Category.Unhandled, Priority.Fatal, Location.UserInferface);
filterContext.ExceptionHandled = true;
// If this is an ajax request, return the exception in the response
if (filterContext.HttpContext.Request.IsAjaxRequest())
{
filterContext.HttpContext.Response.StatusCode = 500;
var content = new ContentResult
{
Content = Resources.Resource.Message_Technical_Difficulties
};
content.ExecuteResult(ControllerContext);
}
else
{
ViewData.Model = new Exception(Resources.Resource.Message_Technical_Difficulties);
View("Exception").ExecuteResult(ControllerContext);
}
}