How to integrate Autofac with WepApi 2 and Owin?

20,724

Ok,

I figured it out. The Autofac Owin integration actually creates an Owin liftimescope, which is available through the whole Owin pipeline, thus available to middleware and extends this lifetimescope to the HttpRequestMessage. This is the lifetimescope marked with the AutofacWebRequest tag.

So all the previous WebApi integration code still needs to be performed on application startup. I have included:

    var dependencyResolver = new AutofacWebApiDependencyResolver(container);
    config.DependencyResolver = dependencyResolver;

but missed:

var builder = new ContainerBuilder();
builder.RegisterApiControllers(Assembly.GetExecutingAssembly()).InstancePerRequest();

in the EngineContext.Initialize method, which does all the registrations via the builder.

Here you can find more information on how to integrate Autofac with the WebApi, which obviously needs to be done also in the case of Owin:

https://code.google.com/p/autofac/wiki/WebApiIntegration

I hope this is useful!

Share:
20,724
Milen Kovachev
Author by

Milen Kovachev

Updated on June 26, 2020

Comments

  • Milen Kovachev
    Milen Kovachev almost 4 years

    I am using this package to integrate Autofac with my WebApi Owin application:

    https://www.nuget.org/packages/Autofac.WebApi2.Owin

    And following this post:

    http://alexmg.com/owin-support-for-the-web-api-2-and-mvc-5-integrations-in-autofac/

    My code in Startup.cs looks like this:

            var config = new HttpConfiguration();
    
            IContainer container = EngineContext.InitializeEngine();
    
            var dependencyResolver = new AutofacWebApiDependencyResolver(container);
            config.DependencyResolver = dependencyResolver;
    
            app.UseAutofacMiddleware(container);
            app.UseAutofacWebApi(config);
    
            WebApiConfig.Register(config);
            app.UseWebApi(config);
    

    However whichever way I spin it, rearrange the code or whatever, Autofac is just not able to resolve anything. Before Owin I had my Global.asax method working just fine:

        protected void Application_Start()
        {
            IContainer container = EngineContext.InitializeEngine();
    
            var dependencyResolver = new AutofacWebApiDependencyResolver(container);
            GlobalConfiguration.Configuration.DependencyResolver = dependencyResolver;
    
            GlobalConfiguration.Configure(WebApiConfig.Register);
        }
    

    What am I missing?

    Thanks