System.Web.Http.WebHost中的GlobalConfiguration与Owin兼容吗?

时间:2013-11-14 15:58:14

标签: asp.net-web-api owin katana

我目前正在使用OWIN将WebApi 1移动到WebApi 2项目。

在这段代码中,GlobalConfiguration位于System.Web.Http.WebHost中。

public class HandlerErrorFilterAttribute : ExceptionFilterAttribute
{
    public override void OnException(HttpActionExecutedContext context)
    {
        var logFactory = GlobalConfiguration.Configuration.DependencyResolver
                            .GetService(typeof(ILoggerFactory)) as ILoggerFactory;
        ...
    }
}

我认为这不是Owin兼容的,但是我找不到如何重写这个,所以我可以访问依赖解析器。

1 个答案:

答案 0 :(得分:4)

我在这里并不完全清楚你的问题......但是GlobalConfiguration可以与Owin中间件兼容......还有一个名为System.Web.Http.Owin的东西,它是一个Web API Owin Adpater中间件...如果你使用这个然后不能使用适配器GlobalConfiguration ......实际上这也是Owin Selfhost场景中使用的同一个适配器......

如果您不使用此适配器并且仅使用其他Owin中间件和System.Web.Http.WebHost,那么您的上述代码应该可以正常工作......您是否看到了不同的内容?