2

我正在按照THIS为我的 MVC 4 应用程序实现错误处理程序。
现在我对所有错误都做同样的事情,不仅是 404,我想获得原始响应以保存它以进行日志记录或在调试模式下显示它,因为它包含有用的信息,比如完整的堆栈跟踪,小显示在哪里错误发生的代码等等。

我现在正在努力Response在调用之前从对象中获取缓冲的响应数据Response.Clear(),但不知道如何。

如何获取 HttpResonse 对象的内容?

对于HttpWebResponse有一种GetResponseStream()方法可以用于此,我在其中找到了很多示例,但是对于 and 什么都没有,HttpResonse并且OutputStream无法阅读...

4

1 回答 1

1

不确定这是否有助于朝着正确的方向发展,但我只是使用这个:

[AttributeUsage(AttributeTargets.Class)]
public class ErrorHandlerAttribute : FilterAttribute, IExceptionFilter
{

    readonly BaseController _bs = new BaseController();

    public virtual void OnException(ExceptionContext fc)
    {
        var model = new errors
        {
            stacktrace = fc.Exception.StackTrace,
            url = fc.HttpContext.Request.RawUrl,
            controller = fc.RouteData.GetRequiredString("controller"),
            source = fc.Exception.Source,
            errordate = DateTime.Now,
            message = fc.Exception.Message//,
            //InnExc = String.IsNullOrEmpty(fc.Exception.InnerException.ToString()) ? fc.Exception.InnerException.ToString() : ""
        };

        var message = "<html><head></head><body><h2>An error occured on " + _bs.GetKeyValue<string>("Mobile Chat App") + ".</h2>";
        message += "<strong>Message:</strong> <pre style=\"background-color:#FFFFEF\"> " + model.message + "</pre><br />";
        message += "<strong>Source:</strong> <pre style=\"background-color:#FFFFEF\">" + model.source + "</pre><br />";
        message += "<strong>Stacktrace:</strong><pre style=\"background-color:#FFFFEF\"> " + model.stacktrace + "</pre><br />";
        message += "<strong>Raw URL:</strong> <pre style=\"background-color:#FFFFEF\">" + model.url + "</pre></br />";
        message += "<strong>Inner Exception:</strong> <pre style=\"background-color:#FFFFEF\">" + model.InnExc + "</pre></br />";
        message += "<strong>Any Form values</strong>: <pre>" + fc.HttpContext.Request.Form + "</pre><br />";
        message += "</body></html>";

        fc.ExceptionHandled = true;
        fc.HttpContext.Response.Clear();
        fc.HttpContext.Response.StatusCode = 500;
        fc.HttpContext.Response.TrySkipIisCustomErrors = true;

        _bs.SendErrorMail(message);

        fc.ExceptionHandled = true;
        //var res = new ViewResult { ViewName = "error" };
        //fc.Result = res;
        fc.HttpContext.Response.Redirect("/ErrorPage");
        //fc.HttpContext.Response.RedirectToRoute("error",new{controller="Home",action="ErrorPage"});
    }

我有一个 gmail 错误帐户,我将所有错误都放入其中,并让我知道我制作的任何网站是否有任何问题,这还没有让我失望。我没有深入研究这个问题,因为这些天我使用了不同的方法,但是:

fc.HttpContext.Request.RawUrl, 

只是httpContext,你有没有httpcontext,我使用get 和fc.HttpContext.Request.Form 的URL 来获取可能导致错误的任何和所有表单数据。

这不是您所要求的响应,但这是因为我在请求期间捕获了错误,而不是响应错误!然后我清除响应(将是错误 500)并将其替换为重定向到我的页面,该页面有一张带键盘的猴子的漂亮图片:-)

于 2013-03-31T22:29:28.833 回答