如何在web api 2中记录badrequest?

时间:2014-03-04 07:15:08

标签: exception-handling asp.net-web-api

有没有办法从web api 2中的操作中捕获并记录badrequest或未经授权的响应代码? 我尝试添加onactionexecuted attributefilter和ExceptionLogger,但它们都没有工作。

public IHttpActionResult ConfirmUpload(string val)
{
   if (String.IsNullOrWhiteSpace(val))
      return BadRequest(val);
}

public static void Register(HttpConfiguration config)
{
    AreaRegistration.RegisterAllAreas();
    config.Filters.Add(new ErrorLogAttribute());
    config.Services.Add(typeof(IExceptionLogger), new ErrorLogger());
}

感谢任何帮助。

1 个答案:

答案 0 :(得分:-1)

要记录错误的请求,您可以编写自己的ExceptionFilterAttribute派生的LogAttribute

public class LogAttribute : ExceptionFilterAttribute
{
    public override void OnException(HttpActionExecutedContext context)
    {
        Log.Error(context.Exception);

        context.Response = context.Request.CreateResponse(
                HttpStatusCode.InternalServerError,
                new { message = context.Exception.InnerException != null ? context.Exception.InnerException.Message : context.Exception.Message });

        base.OnException(context);
    }
}

HttpActionExecutedContext包含有关请求的信息,因此您可以根据需要检查请求状态。属性可以应用于控制器,动作

public class ValueController : ApiController
{
    [Log]
    public IEnumerable<object> Get()
    {
    }
}

或全球添加

public static class WebApiConfig
{
    public static void Register(HttpConfiguration config)
    {
        config.Filters.Add(new LogAttribute());
    }
}

也可以在global.asax

中捕获所有异常
protected void Application_Error()
{
    var ex = Server.GetLastError().GetBaseException();

    // ignore 404
    if (!(ex is HttpException && ((HttpException)ex).GetHttpCode() == 404))
    {
        Log.Fatal("Unhandled error catched in Global.asax", ex);
    }

    Server.ClearError();
}