Get Your Web API Playing Nicely With SignalR on OWIN with Autofac

Niche, right? Yes. But this has caused me a day of headaches so posting here to save anyone else from the pain. WebAPI Say we already have Autofac set-up with your WebAPI. So we have something like this: var builder = new ContainerBuilder(); builder.RegisterApiControllers(Assembly.GetExecutingAssembly()); builder.RegisterAssemblyModules(Assembly.GetExecutingAssembly()); // Register the Autofac middleware FIRST, then the Autofac Web […]

Read More