私のWebApiコードでは、リクエストパイプラインを短絡し、有効なHttp応答を生成するHttpResponseExceptionを発生させます。しかし、私はelmaのログとwebApiを統合しようとしていますが、HttpResponseExeptionsは表示されません。ElmahはHttpResponseExceptionでWebAPIを使用して例外を記録しません
私はELMAHのweb.configセットアップを持っているし、次のコードを持っている:Global.asx.csで
を:
static void ConfigureWebApi(HttpConfiguration config)
{
config.Filters.Add(new ServiceLayerExceptionFilter());
config.Filters.Add(new ElmahHandledErrorLoggerFilter());
config.DependencyResolver = new WebApiDependencyResolver(ObjectFactory.Container);
}
フィルタ:
public class ElmahHandledErrorLoggerFilter : ExceptionFilterAttribute
{
public override void OnException(HttpActionExecutedContext actionExecutedContext)
{
base.OnException(actionExecutedContext);
ErrorSignal.FromCurrentContext().Raise(actionExecutedContext.Exception);
}
}
例外が発生したコード:
public Task<FileUpModel> UploadFile()
{
if (Request.Content.IsMimeMultipartContent())
{
var provider = new TolMobileFormDataStreamProvider("C:\images\");
var task = Request.Content.ReadAsMultipartAsync(provider).ContinueWith(
t =>
{
if (t.IsFaulted || t.IsCanceled)
throw new HttpResponseException(HttpStatusCode.InternalServerError);
var fileInfo = provider.FileData.FirstOrDefault();
if (fileInfo == null)
// the exception here isn't logged by Elmah?!
throw new HttpResponseException(HttpStatusCode.InternalServerError);
var uploadModel = new FileUpModel { success = true };
return uploadModel;
});
return task;
}
else
{
throw new HttpResponseException(Request.CreateResponse(HttpStatusCode.NotAcceptable, "This request is not properly formatted"));
}
}
私が間違っていることを知らせる前にこれを実装している人はいますか?
どのように動作させるには? – jaffa
できません。アクションからスローされると、非HttpResponseExceptionsに対してのみフィルタが呼び出されます。 –
私はHttpResponseExceptionを作成するときに手動のElmahエラーシグナリングを使用しましたが、これは正常に動作するようです。 – jaffa