Ninject Extensions are a collection of open-source projects designed to extend the functionality of the Ninject open-source dependency injector for the .NET framework.

learn more… | top users | synonyms

1
vote
0answers
35 views

Ninject Console App - DebugException does not have an implementation?

just fired up a new console app project. I've added Ninject, Ninject.Extensions.Logging, Ninject.Extensions.Logging.Log4Net I've setup ninject like so: XmlConfigurator.ConfigureAndWatch(new ...
5
votes
2answers
199 views

Ninject - Request scope has already been disposed

I'm using Ninject and the extensions EventBroker and DependencyCreation in an MVC 3 application. I've installed and am using the Ninject.MVC3 package and therefore the OnePerRequestModule. I'm ...
0
votes
1answer
77 views

Is it possible to use Ninject Factory Extensions' ToFactory method with open generics?

I'm building on a previously answered question in which ICar implementations are bound using Ninject Conventions Extensions and a custom IBindingGenerator, and the ICarFactory interface is bound ...
1
vote
1answer
93 views

Ninject Conventions with Ninject Factory Extension To Bind Multiple Types To One Interface

I'm trying to expand on the scenario asked in the SO question titled Ninject Factory Extension Bind Multiple Concrete Types To One Interface by using Ninject Conventions for convention-based binding ...
0
votes
0answers
63 views

Using Ninject custom instance providers to bind successfully using factory method argument to resolve

I've been studying this accepted answer to a similar question in which what I believe is a concrete factory returns an implementation based on a string argument on the factory method matching a named ...
2
votes
1answer
88 views

how to use Ninject intercept using InterceptAttribute

I have a NinjectWebCommon as follow. I am unable to get the TimingInterceptor to trigger on the method that has "Timing" attribute set. It works fine if the intercetor is defined at the class level ...
0
votes
1answer
67 views

Ninject with Log4Net extensions via TaskScheduller no logging output and no error

I have a console application project that is using Ninject and Log4Net. When i run the app on my machine, the logging is working fine. When i run the app on the production server, the logging is ...
1
vote
2answers
130 views

How do I bind generic types with inheritance using Ninject Conventions extensions

How can I bind InitializerForXXX (non-generic implementation) to IInitializer<XXX> (generic interface) using Ninject Conventions so that requests for an IInitializer<T> resolve a ...
1
vote
1answer
68 views

Ninject bind by convention using BindToFactory to a factory interface with class T

I want to replace this code: Kernel.Bind<ITaskFactory<AlertTask>>().ToFactory(); Kernel.Bind<ITaskFactory<PopupTask>>().ToFactory(); with something like this: ...
1
vote
1answer
157 views

Null Reference Exception using Ninject with Ninject.Extensions.Nlog2

I have a simple console app using Ninject, Ninject.Logging and Ninject.Extensions.NLog2 all build with latest nuget packages. My App does the following _kernel = new StandardKernel(); ILogger ...
0
votes
1answer
38 views

Ninject.Extensions.Wcf.SelfHost with nuget?

I pulled the latest Ninject.Extensions.Wcf (3.0.0.5) from nuget but the NinjectWcfConfiguration type used in the SelfHost example is not in that package?
1
vote
1answer
53 views

Scan assemblies and automatic binding based on class annotations or inherited type

I need to scan all assemblies for classes with specific attribute (or classes inherited from abstract class ColorTest) and automaticly bind them to ColorTest. Then I need to instantiate and enumerate ...
1
vote
1answer
145 views

Ninject Factory Extension Memory Leak?

I am using the following interface as a ToFactory() binding: public interface ISamplerFactory { ISampler Create(Action<EventHandler<ValueChangedEventArgs>> register, ...
1
vote
1answer
94 views

Ninject NamedScope Conditional Bindings

I am trying to make a conditional binding on whether or not I am inside a named scope. My interface ILogger - using the default behaviour of the Ninject Logger extension we inject type-specific ...
5
votes
1answer
125 views

What is the difference between “scope”, “context”, etc. in Ninject?

Can the Ninject concepts of scope, context, named binding, (and activation block?) be separated and explained clearly at a conceptual level? As an example, I have a service that loads data records ...
1
vote
0answers
103 views

Ninject Interceptor calling twice beforeinvoke and afterinvoke methods

I am developing an app in asp.net in which I am implementing the Ninject Interceptor in which I am binding/registering the service like ...
0
votes
2answers
173 views

Getting Ninject to work

Clearly, I am missing something. I have an MVC application and have installed Ninject 3 and the MVC3 extensions (although I am running MVC4). I have a SiteSettings class that is referenced ...
1
vote
1answer
102 views

how to get ninject to bind based on factory param -> namespace path?

I'm using Ninject 3.0.1.10 and ninject.extensions.factory 3.0.1.0 from NuGet - in the 'real' scenario I'll be using ninject.extensions.conventions as well (rather than manually binding IFoo), but I ...
0
votes
1answer
45 views

Ninject DependencyCreation and EventBroker extensions. Ensuring a one-to-one subscription

I'm using Ninject Event Broker extensions and I have two services. ServiceOne is the Publisher of an event. ServiceTwo is the subscriber. ServiceOne doesn't have a hard dependency to ServiceTwo, I'm ...
3
votes
1answer
114 views

Lifetime management with Ninject Dependency Creator and Event Broker

I'm using Ninject in a reasonably large project and want to utilize the Dependency Creation and Event Broker extensions. The Dependency Creation readme gives the following example (although I believe ...
2
votes
1answer
130 views

How to add WSHttpBinding to NinjectServiceHostFactory

After my NinjectWebCommon class has run in App_start I then bind my WCF interfaces to services like this: public static void LoadModules(IKernel kernel) { ...
0
votes
1answer
76 views

NInject 3 Conventions NInject attribute not getting injected

For a class with below construct, constructor injection works great but not property. What else do i need to add to the conventions to make Inject attribute work public partial class Repo { ...
1
vote
0answers
149 views

How to get Ninject Intercept Module hooked up?

I have Ninject, Ninject.Extensions.Interception and Ninject.Extensions.Interception.DynamicProxy installed through NuGet and I have the following module public class InterceptAllModule : ...
2
votes
1answer
121 views

How to get Logger in void Main with Ninject.Extensions.Logging?

I'm using Ninject for my DI and Ninject.Extensions.Logging (with NLog) for Logger injection. I want to get an instance of Logger in my Main void at the start of the program. I tried this code: ...
0
votes
0answers
219 views

Ninject Interception 3.0 Interface proxy by method attributes

I have just upgraded a relatively large codebase from Ninject 2.2 to Ninject 3.0. Everything seems to be going as planned except I had to make a few changes to the interception stuff that we use. ...
3
votes
1answer
161 views

Ninject Interception: Service calling intercepted method not being intercepted when called within itself

I have a service class injected with Ninject 3.0. I have set it up so it's proxy is a class proxy rather than an interface proxy. The service has 2 methods, a first one returning broad result and a ...
0
votes
2answers
375 views

Ninject throws Activation Exception in a WebApi project with multiple assemblies

My asp.net WebApi project comprises of multiple assemblies for Services, Core and Data Access. In an attempt to use Ninject as my DI container in the project, I added Ninject.Web.Common package from ...
1
vote
2answers
198 views

Ninject XML Extension - Plugin architecture

I'm using ninject xml extension to congire different DAL's for the same executable (plugins). My idea was to put all of them (DLLs) in a subfolder of the main application with the ninject xml files. ...
0
votes
0answers
144 views

Ninject + Ninject.Extensions with Web API does not resolve types.

In an attempt to use Ninject as my DI container in a WebAPI project, I added Ninject.Web.Common package from NuGet. Then, I Implemented IDependencyResolver as: public class NinjectDependencyResolver ...
1
vote
1answer
144 views

MoqMockingKernel: System.TypeLoadException: Inheritance security rules violated by type

I try to use the MoqMockingKernel class. (Ninject.MockingKernel.Moq) from the Ninject.MockingKernel Extension for a unit test. At initializing the MoqMockingKernel I'm getting the following error: ...
4
votes
1answer
192 views

Ninject Method-level interception with params

I've noticed in the tutorials for interception that you can target a method and intercept it. I.e. Kernel.Bind<Foo>().ToSelf(); Kernel.InterceptReplace<Foo>(foo => ...
0
votes
0answers
165 views

Getting error with Ninject Exception: “Interface Not Found.”

I am having an issue with injection working properly with my application. I have been getting this exception: Interface not found. To make it simplified I made a new application with simple classes, ...
1
vote
1answer
173 views

Trouble injecting factory into custom membership provider in ASP.NET MVC 3 with Ninject 3.0.0 with Factory extension

I am creating an ASP.NET MVC 3 webapp that has a custom membership provider. I am using Ninject.Extensions.Factory 3.0.0 to try to inject a factory into a public property on my custom membership ...
1
vote
1answer
162 views

Interception with Ninject. Fails to load IProxyRequestFactory

I'm learning to use Ninject and Interceptor pattern. I have the following interceptor. public class MyInterceptor:IInterceptor { public void Intercept(IInvocation invocation) { ...
0
votes
0answers
94 views

Demos of using using Ninject for AOP

I like using Ninject in IOC; no xml config, yeah! However, now I haved a question: How can I find some example or demo to use Ninject for AOP? Can anyone provide me with information?
2
votes
1answer
412 views

Using Ninject.MockingKernel with Asp.Net Web API

I've set up a Web API project using Ninject, and I've used the fix detailed here for getting it to work with the latest version of the Web API. Everything is working fine, but I'm now trying to write ...
6
votes
2answers
344 views

Ninject ActivationException: Error activating IAlertManagement

I'm getting the following error: Test method: BootStrapperTest.Can_Create_Alert_Management_Object threw exception: Ninject.ActivationException: Error activating IAlertManagement No matching ...
0
votes
0answers
198 views

Ninject instantiates service class on ServiceHost creation

I meet a problem with using the Ninject WCF extension. The service InstanceContextMode is set to PerCall, but it is instantiated for the first time on ServiceHost creation anyway (and afterwards on ...
0
votes
1answer
193 views

NamedLikeFactoryMethod in Ninject Extensions Factory working in non-compliance with documentation

I have a small issue with my simple example. I have simple factory interface: public interface ICameraFactory { ICameraController GetNikonCamera(); ICameraController GetCanonCamera(); } I bind ...
1
vote
1answer
158 views

Ninject, WCF & Auto Discovery

I can't seem to get these 3 working together. I narrowed it down to a very simple service with 1 method: [System.ServiceModel.ServiceContract] public interface Icontract { ...
2
votes
2answers
345 views

Get ninject factory extension to allow factory parameters be passed to dependencies

Using the Ninject Factory extension, you can automatically generate factories, and let the factory pass parameters to the class' constructor. The following test passes: public interface IBar { ...
0
votes
0answers
147 views

Using Nlog.ErrorException() with Ninject.Extensions.Logging possible?

I'm using Ninject.Extensions.Logging. It has an interface for Nlog called ILogger which has: Debug(string message) Info(string message) etc That's all fine. But I'd like to use this approach for ...
2
votes
1answer
309 views

Ninject.Extensions.Logging.Log4Net Produces Incorrect Output for Class/Method Name

I'm using Ninject 3.0.1.10 for dependency injection and want to use Ninject.Extensions.Logging 3.0.1.0 for log4net 1.2.11 logging. However, I'm getting different output in my log files when using the ...
0
votes
1answer
179 views

Ninject and ChildKernel in MVC3 project: “Error loading Ninject component ICache”

I'm using Ninject (3.0) in my ASP.Net MVC3 project. At some point of request handling I want to execute some tasks. I'm using session-per-request pattern but don't want these tasks to share the same ...
3
votes
1answer
320 views

Ninject bind all factory interfaces

Is there a simple way to use Ninject to bind all Factory interfaces to the ToFactory() extention method? public class Foo { readonly IBarFactory barFactory; public Foo(IBarFactory ...
1
vote
0answers
97 views

Configure Ninject for WF services to be hosted in IIS

I have a asp.net application. I am using Ninject to resolve dependencies. I am using WF Services which will be hosted on IIS. These services will be consumed by my asp.net application. For WF I ...
2
votes
1answer
587 views

Ninject.MVC3 invalid path to NinjectWebCommon.cs

I'm using the Ninject.MVC3 in my application and it has been working great until I desided to rename my solution/projects. Everything has been renamed correctly and all tests passes and so on. The one ...
4
votes
2answers
1k views

Ninject 3 InRequestScope not returning the same instance for the same request

Recently, I upgraded one of my MVC3 projects from Ninject 2 to Ninject 3. After a couple of minutes trying to find why InRequestScope was not anymore available, I found that this is now an extension ...
2
votes
1answer
101 views

Are weakeventmessagebroker and messagebroker Ninject extensions deprecated?

I'm trying to find the most up-to-date Ninject extension for development of event brokers / message brokers. I could locate at least 3: messagebroker, weakeventmessagebroker and bbveventbroker. ...
3
votes
1answer
333 views

ActivationException when using ToFactory in Ninject

When I try to use the ToFactory in Ninject, I get Ninject.ActivationException var test = new StandardKernel(); test.Bind<IFoo>().To<Foo>(); test.Bind<IFooFactory>().ToFactory(); var ...

1 2