A Castle Windsor question: Is it possible to register a class that has an internal constructor with the co开发者_开发知识库ntainer?
I have the following use case: I want to register all components shared between all configurations of an application.Then I would like to register a series of dynamically configured \"Plugins\" which
I am using the MvcContrib library with Castle Windsor and I am having a problem with setting a parameter when I register a component.
I have the following items in my solution: public interface IHandle<TEvent> { void Handle(TEvent event);
I\'ve got a bit of a problem. I\'m working in the Castle Windsor IOC Container. Now what i wanted to do is just mess about with some AOP principles and what i specifically want to do is based on a met
After all what I have read about Dependency Injection and IoC I have decided to try to use Windsor Container within our application (it\'s a 50K LOC multi-layer web app, so I hope it\'s not an overkil
I\'m trying to get log4net integration for Castle Windsor working. I wrote my class with an public property of type ILogger and took the configuration in my app.config like following.
I\'m an IoC newbie, so I\'m wondering if it\'s even the right tool for the job I want to do. I\'m writing a multi-tenant application, and there are several places that we might want to use different
I have been following along in the book Pro ASP.NET MVC Framework by Steven Sanderson.I am trying to rewrite an application to use Unity IoC instead of Castle Windsor IoC.I want the Unity implementati
I Have been struggeling with NHibernate session management and have now ended up with two possible solutions to meet a session per web request.