Thanks in advance for the help.
I have Ninject up and running with my ASP.NET MVC 4 app. I want to get SignalR working where I can inject the IConnectionManager automatically into my constructor. However, I am obviously doing something it doesn't work.
When I look at GlobalHost.DependencyResolver.GetService(typeof(SignalR.IConnectionManager)) it returns the object without issue.
However, when I attempt the same with DependencyResolver.Current.GetService(typeof(SignalR.IConnectionManager)) I get back a null.
I assume my Mvc app is using the standard DependencyResolver to try and locate the SignalR.IConnectionManager as it does with my other dependency objects.
Any help would be great. I am using the NinjectWebCommon class below to register my resolvers on PreApplicationStart.
[assembly: WebActivator.PreApplicationStartMethod(typeof(EREV.NinjectWebCommon), "Start")] [assembly: WebActivator.ApplicationShutdownMethodAttribute(typeof(EREV.NinjectWebCommon), "Stop")]
namespace EREV { using System; using System.Web; using System.Web.Http; using System.Web.Mvc; using Microsoft.Web.Infrastructure.DynamicModuleHelper; using Ninject; using Ninject.Web.Common; using SignalR; using System.Web.Routing;
public static class NinjectWebCommon
{
private static readonly Bootstrapper _Bootstrapper = new Bootstrapper();
/// <summary>
/// Starts the application
/// </summary>
public static void Start()
{
DynamicModuleUtility.RegisterModule(typeof(OnePerRequestHttpModule));
DynamicModuleUtility.RegisterModule(typeof(NinjectHttpModule));
_Bootstrapper.Initialize(CreateKernel);
}
/// <summary>
/// Stops the application.
/// </summary>
public static void Stop()
{
_Bootstrapper.ShutDown();
}
/// <summary>
/// Creates the kernel that will manage your application.
/// </summary>
/// <returns>The created kernel.</returns>
private static IKernel CreateKernel()
{
var kernel = new StandardKernel();
kernel.Bind<Func<IKernel>>().ToMethod(ctx => () => new Bootstrapper().Kernel);
kernel.Bind<IHttpModule>().To<HttpApplicationInitializationHttpModule>();
RegisterServices(kernel);
// setup our DI resolver
var resolver = GetResolver(kernel);
GlobalHost.DependencyResolver = resolver;
DependencyResolver.SetResolver(resolver);
GlobalConfiguration.Configuration.DependencyResolver = resolver;
return kernel;
}
/// <summary>
/// Load your modules or register your services here!
/// </summary>
/// <param name="kernel">The kernel.</param>
private static void RegisterServices(IKernel kernel)
{
// have ninject search for all dll's containing NinjectModule
kernel.Load(AppDomain.CurrentDomain.GetAssemblies());
}
public static NinjectDependencyResolver GetResolver()
{
return GetResolver(_Bootstrapper.Kernel);
}
private static NinjectDependencyResolver GetResolver(IKernel kernel)
{
return new NinjectDependencyResolver(kernel);
}
}