active questions tagged castle-windsor - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T07:02:30Z http://stackoverflow.com/feeds/tag/castle-windsor http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1857596/windsor-resolving-generic-service-subtypes 0 Windsor Resolving generic service SubTypes neouser99 2009-12-07T03:08:40Z 2009-12-08T06:31:59Z <pre><code>interface IFoo&lt;T&gt; { } interface IBar { } class BarImpl : IBar { } class FooImplA : IFoo&lt;IBar&gt; { } class FooImplB : IFoo&lt;BarImpl&gt; { } container.Register( AllTypes.Of(typeof(IFoo&lt;&gt;)).From(assem) .WithService.FirstInterface()); var bars = container.ResolveAll&lt;IFoo&lt;BarImpl&gt;&gt;(); </code></pre> <p>Is there anyway to setup the Windsor container resolution so that <code>bars</code> will include both <code>FooImplA</code> and <code>FooImplB</code>?</p> http://stackoverflow.com/questions/388355/castle-windsor-are-there-any-downsides 9 Castle Windsor Are There Any Downsides? Blounty 2008-12-23T07:26:08Z 2009-12-07T09:54:24Z <p>I have been looking into the castle project and specifically windsor. I have been so impressed with what is possible with this technology and the benefits of having a such a loosely coupled system are definitely apparent. The only thing i am unsure of is if using this method has any downsides, specifically in asp.net?? for example performance hits etc.</p> <p>I am trying to make the benefits of this approach visible to my fellow developers here and am being hit with the following comebacks:</p> <p>1) That is using reflection and each time that an abject is called from the container, reflection must used so performance will be terrible. (Is this the case? does it use reflection on every call?)</p> <p>2) If i am relying on Interfaces how do i deal with objects that have extra methods and properties which have been tacked onto the class? (through inheritence)</p> http://stackoverflow.com/questions/1818888/asp-net-mvc-windsor-castle-working-with-httpcontext-dependent-services 1 ASP.NET MVC & Windsor.Castle: working with HttpContext-dependent services Igor Brejc 2009-11-30T10:01:39Z 2009-12-06T20:01:13Z <p>I have several dependency injection services which are dependent on stuff like HTTP context. Right now I'm configuring them as <strong>singletons</strong> the Windsor container in the Application_Start handler, which is obviously a problem for such services.</p> <p>What is the best way to handle this? I'm considering making them <strong>transient</strong> and then releasing them after each HTTP request. But what is the best way/place to inject the HTTP context into them? Controller factory or somewhere else?</p> http://stackoverflow.com/questions/1839199/how-to-register-a-uri-dependency-to-return-httpcontext-current-request-url-using 1 How to register a uri dependency to return HttpContext.Current.Request.Url using Castle Windsor? j3ffb 2009-12-03T10:56:41Z 2009-12-06T16:41:22Z <p>I'm new to Castle Windsor, so go easy!!</p> <p>I am developing an MVC web app and one of my controllers has a dependency on knowing the current request Url. So in my Application_Start I initialise a WindsorContainer (container below), register my controllers and then try the following...</p> <pre><code>container.AddFacility&lt;FactorySupportFacility&gt;(); container.Register(Component.For&lt;Uri&gt;().LifeStyle.PerWebRequest.UsingFactoryMethod(() =&gt; HttpContext.Current.Request.Url)); </code></pre> <p>However when I run up my web app I get an exception that my controller...</p> <p>is waiting for the following dependencies:</p> <p>Keys (components with specific keys) - uri which was not registered.</p> <p>The controller it is trying to instantiate has the following signature:</p> <pre><code>public MyController(Uri uri) </code></pre> <p>For some reason it is not running my factory method?</p> <p>However if I change the controller signature to:</p> <pre><code>public MyController(HttpContext httpContext) </code></pre> <p>and change the registration to:</p> <pre><code>container.Register(Component.For&lt;HttpContext&gt;().LifeStyle.PerWebRequest.UsingFactoryMethod(() =&gt; HttpContext.Current)); </code></pre> <p>Then everything works a treat!!</p> <p>What am I missing when trying to register a Uri type? Its seems exactly the same concept to me? I must be missing something!?</p> <p><strong>Updated:</strong></p> <p>I have done some more debugging and have registered both the Uri and the HttpContext using the factory methods shown above. I have added both types as parameters on my Controller constructor.</p> <p>So to clarify I have a both Uri and HttpContext types registered and both using the FactoryMethods to return the relevant types from the current HttpContext at runtime. I also have registered my controller that has a dependency on these types.</p> <p>I have then added a breakpoint after I have registration and have taken a look at the GraphNodes on the kernal as it looks like it stores all the dependencies. Here it is:</p> <p>[0]: {EveryPage.Web.Controllers.BaseController} / {EveryPage.Web.Controllers.BaseController}</p> <p>[1]: {EveryPage.Web.Controllers.WebpagesController} / {EveryPage.Web.Controllers.WebpagesController}</p> <p>[2]: {System.Web.HttpContext} / {System.Web.HttpContext}</p> <p>[3]: {Castle.MicroKernel.Registration.GenericFactory<code>1[System.Web.HttpContext]} / {Castle.MicroKernel.Registration.GenericFactory</code>1[System.Web.HttpContext]}</p> <p>[4]: {System.Uri} / {System.Uri}</p> <p>[5]: {Castle.MicroKernel.Registration.GenericFactory<code>1[System.Uri]} / {Castle.MicroKernel.Registration.GenericFactory</code>1[System.Uri]}</p> <p>It looks as though it has registered my Controller and both the types, plus it has the Factories. Cool.</p> <p>Now if I drill into the WebpagesController and take a look at its dependencies it only has 1 registered:</p> <p>[0]: {System.Web.HttpContext} / {System.Web.HttpContext}</p> <p>Now shouldn't this have 2 registered dependencies as it takes a HttpContext and Uri on its constructor??</p> <p>Any ideas? Am I barking up the wrong tree?</p> http://stackoverflow.com/questions/1843829/parameter-unexpectedly-initialized-when-invoked-from-unit-test 0 Parameter unexpectedly initialized when invoked from unit test Ben Aston 2009-12-03T23:27:47Z 2009-12-04T18:29:28Z <p>I have a unit test invoking a constructor, passing in a "null" on purpose to test the handling of the null.</p> <p>I expect the method invoked to throw an ArgumentNullException, but when I step through the code, I see the parameter has actually been initialised.</p> <p>This has me stumped, although my gut says it has something to do with the DI container (Castle Windsor).</p> <p>Can anyone shed any light on this?</p> <p>My unit test, a null is passed together with an instantiated delegate:</p> <pre><code> [Test] public void ConstructorThrowsAnExceptionWhenImplementationCollectionIsNull() { //assert Assert.Throws&lt;ArgumentException&gt;(() =&gt; new CacheImplementationSelector(null, _stubCacheImplementationSelectorDelegate)); } </code></pre> <p>The invoked method:</p> <pre><code>public CacheImplementationSelector(ICollection&lt;ICacheImplementation&gt; implementations, CacheImplementationSelectorDelegate selectorDelegate) { implementations.IsNotNullArgCheck("implementations"); ... </code></pre> <p>Hovering my mouse over the implementations parameter with the code stopped on a breakpoint in the CacheImplementationSelectorMethod, visual studio tells me the parameter "implementations" has a Count of 1 and [0] is null.</p> <p>I am using ReSharper to run the NUnit test.</p> <p>For completeness the TestFixtureSetup and SetUp are as follows:</p> <pre><code>[TestFixtureSetUp] public void FixtureSetUp() { _mocks = new MockRepository(); } [SetUp] public void Setup() { _listOfImplementations = new List&lt;ICacheImplementation&gt;() { _stubICacheImplementation }; _stubCacheImplementationSelectorDelegate = MockRepository.GenerateStub&lt;CacheImplementationSelectorDelegate&gt;(); _stubICacheImplementation = MockRepository.GenerateStub&lt;ICacheImplementation&gt;(); _stubKeyCreator = MockRepository.GenerateStub&lt;ICacheKeyCreator&gt;(); _stubStrategy = MockRepository.GenerateStub&lt;ICachingStrategy&gt;(); _stubEncoder = MockRepository.GenerateStub&lt;ICacheItemEncoder&gt;(); _c = new CacheImplementationSelector(_listOfImplementations, _stubCacheImplementationSelectorDelegate); _testObject = new object(); _yesterday = DateTime.Now.Subtract(new TimeSpan(1, 0, 0, 0)); _tomorrow = DateTime.Now.Add(new TimeSpan(1, 0, 0, 0)); _testString = "test"; _tooLongKey = "a".Repeat(Cache.MaxKeyLength+1); _tooLongFriendlyName = "a".Repeat(Cache.MaxFriendlyNameLength + 1); } </code></pre> http://stackoverflow.com/questions/1837020/castle-windsor-how-to-register-internal-implementations 1 Castle Windsor: How to register internal implementations shovavnik 2009-12-03T01:08:19Z 2009-12-04T14:33:06Z <p>This registration works when all the implementations of IService are public:</p> <pre><code>AllTypes .Of&lt;IService&gt;() .FromAssembly(GetType().Assembly) .WithService.FirstInterface() </code></pre> <p>For example:</p> <pre><code>public interface IService {} public interface ISomeService : IService {} public class SomeService : ISomeService {} </code></pre> <p>Resolving ISomeService returns an instance of SomeService.</p> <p>But if the SomeService class is internal, the container throws an exception that states that ISomeService is not registered.</p> <p>So is there any way to register internal implementations for public interfaces?</p> http://stackoverflow.com/questions/1837893/castle-windsor-usingfactorymethod-cant-instantiate-with-a-weird-error 0 Castle Windsor: UsingFactoryMethod can't instantiate with a weird error shovavnik 2009-12-03T05:44:43Z 2009-12-03T09:47:05Z <p>When I use this registration:</p> <pre><code>container.Register( Component .For&lt;IFooFactory&gt;() .ImplementedBy&lt;FooFactory&gt;(), Component .For&lt;IFoo&gt;() .UsingFactoryMethod(kernel =&gt; kernel.Resolve&lt;IFooFactory&gt;().CreateFoo()) ); </code></pre> <p>I get this exception:</p> <blockquote> <p>Castle.MicroKernel.ComponentRegistrationException: Type MyNamespace.IFoo is abstract. As such, it is not possible to instansiate it as implementation of MyNamespace.IFoo service</p> </blockquote> <p>I'm not really sure what the problem is. But the stack trace shows that in 'DefaultComponentActivator.CreateInstance()', the following condition succeeds and then the error is thrown:</p> <pre><code>if (createProxy == false &amp;&amp; Model.Implementation.IsAbstract) </code></pre> <p>Do I need a proxy of some sort here? Is the registration wrong?</p> http://stackoverflow.com/questions/1163900/external-controllers-and-castle 0 External Controllers and Castle William 2009-07-22T08:42:12Z 2009-12-01T16:18:03Z <p>FIXED: I'm leaving this in case some other Joe Schmo needs it.</p> <p>In the controller factory you need to register the controller so that it can be found when called. <strong>container.Kernel.AddComponent("ExternalResources", typeof(InteSoft.Web.ExternalResourceLoader.ExternalResourceController), LifestyleType.Transient);</strong> Do it like so:</p> <pre><code>// Instantiate a container, taking configuration from web.config container = new WindsorContainer( new XmlInterpreter(new ConfigResource("castle")) ); // Also register all the controller types as transient var controllerTypes = from t in Assembly.GetExecutingAssembly().GetTypes() where typeof(IController).IsAssignableFrom(t) select t; foreach (Type t in controllerTypes) container.AddComponentWithLifestyle(t.FullName, t, LifestyleType.Transient); // Register controllers in external assemblies container.Kernel.AddComponent("ExternalResources", typeof(InteSoft.Web.ExternalResourceLoader.ExternalResourceController), LifestyleType.Transient); </code></pre> <p>I am using the <a href="http://mvcresourceloader.codeplex.com/" rel="nofollow">MVC Resource loader</a> to compress and minify my CSS and JS. I am also using the WindsorControllerFactory for dependency injection. MVC REsource loader uses a controller that is located in the InteSoft.Web.ExternalResourceLoader namespace which is in a seperate assembly. </p> <p>The problem seems to be that Castle can't find (and resolve) that controller because it is in a different assembly. I'm pretty new to DI and Castle so I'm not sure where to even start.</p> <p>Castle Config File</p> <pre><code>&lt;component id="MVCResourceLoader" service="System.Web.Mvc.ITempDataProvider, System.Web.Mvc" type="InteSoft.Web.ExternalResourceLoader.NullTempDataProvider, InteSoft.Web.ExternalResourceLoader" lifestyle="PerWebRequest"&gt; &lt;/component&gt; </code></pre> <p>Windsor Controller Factory</p> <pre><code>public class WindsorControllerFactory : DefaultControllerFactory { WindsorContainer container; // The constructor: // 1. Sets up a new IoC container // 2. Registers all components specified in web.config // 3. Registers all controller types as components public WindsorControllerFactory() { // Instantiate a container, taking configuration from web.config container = new WindsorContainer( new XmlInterpreter(new ConfigResource("castle")) ); // Also register all the controller types as transient var controllerTypes = from t in Assembly.GetExecutingAssembly().GetTypes() where typeof(IController).IsAssignableFrom(t) select t; foreach (Type t in controllerTypes) container.AddComponentWithLifestyle(t.FullName, t, LifestyleType.Transient); } // Constructs the controller instance needed to service each request protected override IController GetControllerInstance(Type controllerType) { return (IController)container.Resolve(controllerType); } } </code></pre> <p>Error Page</p> <pre><code> Server Error in '/' Application. The type name InteSoft.Web.ExternalResourceLoader.NullTempDataProvider, InteSoft.Web.ExternalResourceLoader could not be located Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Configuration.ConfigurationErrorsException: The type name InteSoft.Web.ExternalResourceLoader.NullTempDataProvider, InteSoft.Web.ExternalResourceLoader could not be located Source Error: Line 23: { Line 24: // Instantiate a container, taking configuration from web.config Line 25: container = new WindsorContainer( Line 26: new XmlInterpreter(new ConfigResource("castle")) Line 27: ); Source File: C:\Projects\CaseLogger Pro\CaseLogger.Website\WindsorControllerFactory.cs Line: 25 Stack Trace: [ConfigurationErrorsException: The type name InteSoft.Web.ExternalResourceLoader.NullTempDataProvider, InteSoft.Web.ExternalResourceLoader could not be located] Castle.Windsor.Installer.DefaultComponentInstaller.ObtainType(String typeName) +81 Castle.Windsor.Installer.DefaultComponentInstaller.SetUpComponents(IConfiguration[] configurations, IWindsorContainer container) +132 Castle.Windsor.Installer.DefaultComponentInstaller.SetUp(IWindsorContainer container, IConfigurationStore store) +66 Castle.Windsor.WindsorContainer.RunInstaller() +35 Castle.Windsor.WindsorContainer..ctor(IConfigurationInterpreter interpreter) +60 CaseLogger.Website.WindsorControllerFactory..ctor() in C:\Projects\CaseLogger Pro\CaseLogger.Website\WindsorControllerFactory.cs:25 CaseLogger.MvcApplication.Application_Start() in C:\Projects\CaseLogger Pro\CaseLogger.Website\Global.asax.cs:50 Version Information: Microsoft .NET Framework Version:2.0.50727.3082; ASP.NET Version:2.0.50727.3082 </code></pre> <p><strong>Please let me know if I need to provide more debug info.</strong></p> <p><strong>UPDATE</strong> If I access the url directly it returns the compressed files e.g. <a href="http://localhost:3826/Shared/ExternalResource?name=MinScript&amp;version=20080811&amp;display=Show" rel="nofollow">http://localhost:3826/Shared/ExternalResource?name=MinScript&amp;version=20080811&amp;display=Show</a></p> http://stackoverflow.com/questions/1818579/windsor-castle-ioc-how-to-register-ibaseservicetobject-to-baseservicetobject 0 Windsor Castle IoC, how to register IBaseService<TObject> to BaseService<TObject, TRepository> Omu 2009-11-30T08:51:27Z 2009-11-30T15:39:17Z <p>I have something like this:</p> <pre><code>public interface IBaseService&lt;TObject&gt; public class BaseService&lt;TObject, TRepository&gt; : IBaseService&lt;TObject&gt; where TRepository : IRepository&lt;TObject&gt; </code></pre> <p>I need to register BaseService To IBaseService (the IRepository&lt;> is registered)</p> http://stackoverflow.com/questions/1800820/how-to-i-make-castle-windsor-automatically-register-controllers-that-dont-have-a 1 How to I make castle windsor automatically register controllers that don't have any dependencies? mkelley33 2009-11-26T00:07:37Z 2009-11-26T00:22:43Z <p>I know I can specify it in the configuration XML, but I'd like to not have to do so for <em>every</em> controller. For example: I have a controller without any dependencies being injected, but I'd rather not type out the XML component section in the config file or register it programmatically. Any ideas, suggestions, examples? Thanks for all the help!</p> http://stackoverflow.com/questions/1799561/string-format-for-castle-dictionaryadapter 0 String format for Castle DictionaryAdapter alexandrul 2009-11-25T19:56:31Z 2009-11-25T22:43:57Z <p>I'm using Castle DictionaryAdapter in order to get the application settings from the <strong>app.config</strong> as an interface ( based on <a href="http://blog.andreloker.de/post/2008/09/05/Getting-rid-of-strings-%283%29-take-your-app-settings-to-the-next-level.aspx" rel="nofollow">Getting rid of strings (3): take your app settings to the next level</a> ):</p> <pre><code>public interface ISettings { int MaxUsers { get; } string FeedbackMail { get; } DateTime LastUserLogin { get; } } </code></pre> <p><strong>app.config</strong></p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;configuration&gt; &lt;appSettings&gt; &lt;add key="MaxUsers" value="20"/&gt; &lt;add key="FeedbackMail" value="foo@localhost"/&gt; &lt;add key="LastUserLogin" value="2009-06-15T13:45:30.0900000"/&gt; &lt;/appSettings&gt; &lt;/configuration&gt; </code></pre> <p>Is it possible to configure DictionaryAdapter to use a custom string format like <strong>"yyyyMMdd-HHmm"</strong> for converting the value stored in <strong>app.config</strong> ?</p> http://stackoverflow.com/questions/1298429/windsor-with-composite-wpf-february-release-prism-2 0 Windsor with composite WPF February release (Prism 2) Oll 2009-08-19T08:07:04Z 2009-11-25T22:02:47Z <p>Has anyone managed to create a windsor bootstrapper for prism2? </p> <p>Prism 2 seems to rely on Unity's behaviour of injecting types that haven't yet been registered.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1795729/whats-the-best-way-to-initialize-an-mvc-controller-with-multiple-parameters-of-t 1 What's the best way to initialize an MVC Controller with multiple parameters of the same type using Castle Windsor? Luc 2009-11-25T09:32:17Z 2009-11-25T09:38:47Z <p>In my MVC application, I'm registering all of my controllers using reflection in the Application_Start handler. This basically creates all types that are used on any controller parameter and adds it to the container.</p> <p>I now have a situation where I have multiple parameters on my controller that are of the <i>same</i> type. Here is a simple example of my problem:</p> <pre><code>public class ClassA : ICustomType { ... } public class ClassB : ICustomType { ... } public class CustomController : Controller { public CustomController(ICustomType a, ICustomType b) { ... } } </code></pre> <p>I know that I can define CustomController in my web.config file using the <code>&lt;components&gt;</code> group. However, I'm curious to know if there is a way that I could specify 'ClassA' as my first parameter and 'ClassB' as my second parameter outside of my web.config file??</p> http://stackoverflow.com/questions/1791721/castle-windsor-how-to-know-that-the-container-has-been-initialized-or-configured 1 Castle Windsor: how to know that the container has been initialized or configured ? Thierry 2009-11-24T17:43:06Z 2009-11-24T20:03:59Z <p>Hello.</p> <p>I'm using Castle Windsor with a configuration from my App.config file. </p> <p>In the code I use :</p> <pre><code>IWindsorContainer container = new WindsorContainer(new XmlInterpreter()); </code></pre> <p>to get the container. </p> <p>But for some configurations of my application I don't want to use CastleWindsor (for some migration issues...) and therefore, I don't want to add any Castle section in my App.config. </p> <p>And the problem is that if there is no castle config, then </p> <pre><code>IWindsorContainer container = new WindsorContainer(new XmlInterpreter()); </code></pre> <p>throws an exception "Could not find section 'castle' in the configuration file associated with this domain."</p> <p>So basically in my code I want to do something like:</p> <pre><code>if (IsCastleWindsorInitialized()) {/* do something */ } else { /* do something else */ } </code></pre> <p>where 'IsCastleWindsorInitialized()' returns true when the App.config contains a castle section. </p> <p>In order to implement that function I can certainly use the ConfigurationManager but I'm wondering if I can use Castle Windsor API to do that.</p> http://stackoverflow.com/questions/1792283/should-controller-lifestyle-always-be-transient-in-windsor-configuration-for-asp 0 Should controller lifestyle always be transient in Windsor configuration for ASP.NET MVC? mkelley33 2009-11-24T19:14:00Z 2009-11-24T19:16:49Z <p>I ran into a problem where I had an Html.DropDownList in my view that would postback the selected value the first time I submitted the form, but each subsequent postback would only post data from the initial postback. So I added lifestyle="transient" to the component element where I had configured my controller for castle windsor, which fixed the problem, but of course made postbacks take longer since a new controller was being instantiated per request. Given the information above, what insight, suggestions, or solutions might help determine my original question about the controller lifestyle? Thanks for all the help and support!</p> http://stackoverflow.com/questions/1784653/register-multiple-components-for-single-interface-using-castle-windsor 1 Register Multiple Components for Single Interface Using Castle Windsor beckelmw 2009-11-23T17:23:35Z 2009-11-23T19:31:17Z <p>I am trying to register multiple NHibernate ISessions (multiple databases) by using the code below. I am getting "There is a component already registered for the given key Castle.MicroKernel.Registration.GenericFactory`1[[NHibernate.ISession, NHibernate, Version=2.1.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4]]" as the error message when the container is trying to be built.</p> <pre><code>container.Kernel.Register( Component.For&lt;ISession&gt;().LifeStyle.Transient .UsingFactoryMethod(() =&gt; sessionFactoryOne.OpenSession() ).Named("ISession+sessionOne")); container.Kernel.Register( Component.For&lt;ISession&gt;().LifeStyle.Transient .UsingFactoryMethod(() =&gt; sessionFactoryTwo.OpenSession()) .Named("ISession+sessionTwo")); </code></pre> http://stackoverflow.com/questions/1783124/castle-ioc-resolving-circular-references 1 castle IOC - resolving circular references Frederik 2009-11-23T13:27:37Z 2009-11-23T16:52:50Z <p>Hi</p> <p>quick question for my MVP implementation:</p> <p>currently I have the code below, in which both the presenter and view are resolved via the container.<br> Then the presenter calls View.Init to pass himself to the view.</p> <p>I was wondering however if there is a way to let the container fix my circular reference (view -> presenter, presenter -> view).</p> <pre><code>class Presenter : IPresenter { private View _view; public Presenter(IView view, ...){ _view = view; _view.Init(this) } } class View : IView { private IPresenter _presenter; public void Init(IPresenter presenter){ _presenter = presenter; } } </code></pre> <p>Kind regards</p> <p>Frederik</p> http://stackoverflow.com/questions/1778082/castle-windsor-ioc-how-to-initialize-service-and-repository-layer 0 Castle Windsor IoC: How to Initialize Service and Repository Layer Fleents 2009-11-22T07:17:14Z 2009-11-22T12:08:40Z <p><strong>Configuration:</strong> </p> <pre><code> component id="customerService" service="MyApp.ServiceLayer.ICustomerService`1[[MyApp.DataAccess.Customer, MyApp.DataAccess]], MyApp.ServiceLayer" type="MyApp.ServiceLayer.CustomerService, MyApp.ServiceLayer" </code></pre> **Controller:** <pre><code> private ICustomerService _service; public CustomerController() { WindsorContainer container = new WindsorContainer(new XmlInterpreter()); _service = container.Resolve>("customerService"); } </code></pre> **Service Layer:** <pre><code> private ICustomerRepository _repository; public CustomerService(ICustomerRepository repository) { _repository = repository; } </code></pre> **Error:** <pre> Can't create component 'customerService' as it has dependencies to be satisfied. customerService is waiting for the following dependencies: Services: - MyApp.Repository.ICustomerRepository`1[[MyApp.DataAccess.Customer, MyApp.DataAccess, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] which was not registered. </pre> http://stackoverflow.com/questions/1701030/project-windsor-repository-extending-datacontext 1 Project Windsor - Repository Extending DataContext Kezzer 2009-11-09T13:37:04Z 2009-11-22T00:34:56Z <p>Before I begin I will say this: I <em>have</em> to extend <code>DataContext</code> in my repository because I'm calling stored procedures and <code>ExecuteMethodCall</code> is only available <em>internally</em>. Many people don't seem to know this, so please don't say "just don't extend DataContext".</p> <p>I've just started using Windsor as my IoC container. My controller happily does the following:</p> <pre><code>public ContractsControlController(IContractsControlRepository contractsControlService) { _contractsControlRepository = contractsControlService; } </code></pre> <p>But my repository must have this constructor:</p> <pre><code>public ContractsControlRepository() : base(ConfigurationManager.ConnectionStrings["AccountsConnectionString"].ToString()) { } </code></pre> <p>But the IoC container is there to let you specify connection strings for your repository in the web.config. What must my constructor in the repository look like in order to do this? If I don't specify the one I've shown then it complains that there are no constructors that take zero arguments.</p> <p>Cheers</p> <p><strong>EDIT</strong></p> <p>In global.asax.cs</p> <pre><code>ControllerBuilder.Current.SetControllerFactory(new WindsorControllerFactory()); </code></pre> <p>WindsorControllerFactory.cs (in the root)</p> <pre><code>public class WindsorControllerFactory : DefaultControllerFactory { WindsorContainer container; public WindsorControllerFactory() { container = new WindsorContainer(new XmlInterpreter(new ConfigResource("castle"))); var controllerTypes = from t in Assembly.GetExecutingAssembly().GetTypes() where typeof(IController).IsAssignableFrom(t) select t; foreach (Type t in controllerTypes) { container.AddComponentLifeStyle(t.FullName, t, LifestyleType.Transient); } } protected IController GetControllerInstance(Type controllerType) { return (IController)container.Resolve(controllerType); } } </code></pre> <p>But the <code>container</code> isn't needed if nothing is going in web.config?</p> http://stackoverflow.com/questions/1265114/dependency-browser-that-runs-against-an-inversion-of-control-framework 3 dependency browser that runs against an inversion of control framework Frank Schwieterman 2009-08-12T09:17:20Z 2009-11-19T19:36:15Z <p>Do any inversion of control / dependency injection framworks support viewing the object dependencies that have been registered? This is not to execute the code, but to better understand it. It seems that a graph based on the information it has (class A depends on B and C, class B dependencs on C and E, etc) would really document a system well.</p> <p>I'm using Castle Windsor at the moment, but wouldn't mind trying a different framework for this functionality.</p> http://stackoverflow.com/questions/1744270/multi-tenancy-with-windsor 0 Multi tenancy with Windsor savvas sopiadis 2009-11-16T19:20:30Z 2009-11-19T08:06:55Z <p>Hi everybody!</p> <p>I need to implement multi-tenancy and i like the way it is solved <a href="http://mikehadlow.blogspot.com/2008/11/multi-tenancy-part-2-components-and.html" rel="nofollow">here</a>.</p> <p>The problem implementing this scenario (in my project) is that the following code snippet </p> <pre><code>var handlerSelectors = windsorContainer.ResolveAll&lt;IHandlerSelector&gt;(); </code></pre> <p>gives me something ( {Castle.MicroKernel.IHandlerSelector[0]}). The following snippet should iterate through handlerSelectors but it's doing nothing !!</p> <pre><code>foreach (var handlerSelector in handlerSelectors) { windsorContainer.Kernel.AddHandlerSelector(handlerSelector); } </code></pre> <p>In the debugger i can see i tries to set a value to var handlerSelector but it skips the for loop. Am i missing something??</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1756882/castle-windsor-auto-registration 0 Castle Windsor auto registration Hainesy 2009-11-18T15:42:18Z 2009-11-18T16:32:28Z <p>I currently have the following registration set up</p> <pre><code>private static void AddFrameworkComponentsTo(IWindsorContainer container) { container.AddComponent&lt;ITypeConverter, TypeConversionFacade&gt;(); container.AddComponent&lt;Framework.Conversion.ITypeConverter&lt;string, int&gt;, StringConverter&gt;(); container.AddComponent&lt;Framework.Conversion.ITypeConverter&lt;string, decimal&gt;, StringConverter&gt;(); container.AddComponent&lt;Framework.Conversion.ITypeConverter&lt;string, DateTime&gt;, StringConverter&gt;(); } </code></pre> <p>What's the easiest way to avoid having to register each interface to the same component? As you can see, my "StringConverter" class implements several different interfaces, and the list is likely to grow.</p> <p><strong>Edit</strong> I've just realised that the above doesn't even work because complains about the key, so had to change it to below:</p> <pre><code>container.AddComponent&lt;Framework.Conversion.ITypeConverter&lt;string, int&gt;, StringConverter&gt;("ITypeConverter&lt;string, int&gt;"); container.AddComponent&lt;Framework.Conversion.ITypeConverter&lt;string, decimal&gt;, StringConverter&gt;("ITypeConverter&lt;string, decimal&gt;"); container.AddComponent&lt;Framework.Conversion.ITypeConverter&lt;string, DateTime&gt;, StringConverter&gt;("ITypeConverter&lt;string, DateTime&gt;"); </code></pre> <p>What's the best way to handle this?</p> http://stackoverflow.com/questions/1746387/castle-windsor-problem-with-multiple-constructors 0 Castle Windsor: Problem with Multiple Constructors highvoltage 2009-11-17T03:23:44Z 2009-11-17T09:02:11Z <p>Hello stackoverflow! Long-time reader first time writer here. I am currently undertaking a conversion from to the use of Ninject to the current release of Castle Windsor for a simple C# .NET application. </p> <p>For the most part, the conversion has gone well and the implementation of the containers has executed flawlessly. I am however having a small issue with my repository objects.</p> <p>I have a user repository object that is coded in the following fashion:</p> <pre><code>public class UserRepository : IUserRepository { public UserRepository(IObjectContext objectContext) { // Check that the supplied arguments are valid. Validate.Arguments.IsNotNull(objectContext, "objectContext"); // Initialize the local fields. ObjectContext = objectContext; } public UserRepository(IObjectContextFactory factory) : this(factory.CreateObjectContext()) { } // ----------------------------------------------- // Insert methods and properties... // ----------------------------------------------- } </code></pre> <p>To correspond to this code, I have setup the following entries in my application's configuration file:</p> <pre><code>&lt;castle&gt; &lt;components&gt; &lt;component id="objectContextFactory" lifestyle="custom" customLifestyleType="Common.Infrastructure.PerWebRequestLifestyleManager, Common.Castle" service="Project.DAL.Context.IObjectContextFactory, Project.DAL.LINQ" type="project.DAL.Context.ObjectContextFactory, Project.DAL.LINQ"&gt; &lt;/component&gt; &lt;component id="userRepository" lifestyle="custom" customLifestyleType="Common.Infrastructure.PerWebRequestLifestyleManager, Common.Castle" service="Project.BL.Repository.IUserRepository, Project.BL" type="Project.BL.Repository.UserRepository, Project.BL.LINQ"&gt; &lt;parameters&gt; &lt;factory&gt;${objectContextFactory}&lt;/factory&gt; &lt;/parameters&gt; &lt;/component&gt; &lt;/components&gt; &lt;/castle&gt; </code></pre> <p>To me, everything looks like it should. When I attempt to resolve an instance of the IObjectContextFactory service, I retrieve an ObjectContextFactory object. My problem comes in when I try and resolve an instance of the IUserRepository service. I am treated to the following delightful exception:</p> <blockquote> <p>Can't create component 'userRepository' as it has dependencies to be satisfied. userRepository is waiting for the following dependencies: </p> <p>Services:</p> <p><code>- SandCastle.DAL.Context.IObjectContext which was not registered.</code></p> </blockquote> <p>I've tried everything I can think of on this. So, unto you stackoverflow readers, I say: got any ideas?</p> http://stackoverflow.com/questions/1744984/trouble-using-iauthorizationpolicy-with-wcf-and-castle-windsor 0 Trouble using IAuthorizationPolicy with WCF and Castle-Windsor Michael Johnson 2009-11-16T21:31:08Z 2009-11-17T04:14:18Z <p>I'm currently using Castle-Windsor with the WCF Facility to inject all my WCF services. I've just started adding permission requirements using a custom <code>IAuthorizationPolicy</code>, which seems to work when done on a per-method basis on the service, but when the service class itself is marked up with the requirements, I get an exception thrown.</p> <p>I've set things up based on the example at <a href="http://wcfsecurityguide.codeplex.com/wikipage?title=How%20To%20-%20Use%20Username%20Authentication%20with%20Transport%20Security%20in%20WCF%20from%20Windows%20Forms&amp;referringTitle=Home" rel="nofollow">How To – Use Username Authentication with Transport Security in WCF from Windows Forms</a>. I didn't set up the custom HTTP Module class as I'm using an existing <code>Membership</code> implementation. My <code>IAuthorizationPolicy</code> implementation (<code>HttpContextPrincipalPolicy</code>) is essentially identical.</p> <p>The essential part of my <code>Web.config</code> is:</p> <pre><code>&lt;serviceBehaviors\&gt; &lt;behavior name="MyBehavior"&gt; &lt;serviceMetadata httpGetEnabled="true" /&gt; &lt;serviceDebug includeExceptionDetailInFaults="false" /&gt; &lt;serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="UserProvider"&gt; &lt;authorizationPolicies&gt; &lt;clear/&gt; &lt;add policyType="Website.FormsAuth.HttpContextPrincipalPolicy,Website"/&gt; &lt;/authorizationPolicies&gt; &lt;/serviceAuthorization&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; </code></pre> <p>Everything seems to work fine when I put the requirements on the method. This is being done like so:</p> <pre><code>[PrincipalPermission(SecurityAction.Demand, Role = RoleNames.USER_ADMINISTRATION)] </code></pre> <p>If this is on an <code>OperationContract</code> method, things work as expected. However, if it is moved to the class itself (which implements the <code>ServiceContract</code>) I get the following exception (with most of the extra stuff pruned out):</p> <pre><code>Castle.MicroKernel.ComponentActivator.ComponentActivatorException { Message = "ComponentActivator: could not instantiate Services.UserService" InnerException = System.Reflection.TargetInvocationException { Message = "Exception has been thrown by the target of an invocation." InnerException = System.Security.SecurityException { Message = "Request for principal permission failed." } } } </code></pre> <p>I've debugged and found that the constructor on <code>HttpContextPrincipalPolicy</code> is being called but <code>Evaluate()</code> is not when the demand is attached to the class. When it is attached to the method <code>Evaluate()</code> <em>is</em> being called. So at this point I've gone as far as my newbie .NET/WCF/Castle-Windsor skills will take me.</p> <p>Is there a way to tell Castle-Windsor to invoke the service constructor while honoring the <code>IAuthorizationPolicy</code>? Or tell WCF that <code>Evaluate()</code> needs to be called for the creation of the class? Or is there some other way around WCF that does the same thing? I don't want to have to mark up every single method with the exact same bit of attribute declaration.</p> http://stackoverflow.com/questions/1746165/where-should-i-store-a-reference-to-my-di-container 1 Where should I store a reference to my DI container? Mike Comstock 2009-11-17T02:06:41Z 2009-11-17T02:46:43Z <p>I'm wondering how I should store/reference my dependency injection container(s). Is it alright to have a container be a static property on a static class? Or should I have the container be an instance variable on the application? I'm wondering what the pros and cons of each option are, and what is the best practice for this in web, mvc, console, and windows apps?</p> http://stackoverflow.com/questions/274220/does-castle-windsor-support-forwardedtypes-via-xml-configuration 4 Does Castle-Windsor support ForwardedTypes via XML configuration Dan 2008-11-08T02:12:42Z 2009-11-15T23:37:53Z <p>I have a class that implements multiple interfaces. I would like to register these interfaces via XML. All I've found is documentation for the new Fluent Interface. Is this option supported via XML? What would be involved in adding this feature?</p> http://stackoverflow.com/questions/1735284/castle-windsor-resolveall-that-throws-when-any-of-registered-services-cannot-be-r 1 Castle Windsor ResolveAll that throws when any of registered services cannot be resolved Simon Jesenko 2009-11-14T19:20:07Z 2009-11-14T21:54:52Z <p>It seems that current behaviour of Castle Windsor (2.0) method</p> <pre><code> container.ResolveAll(Type type) </code></pre> <p>is to ignore all services that cannot be resolved due to missing dependencies. What is recommened way to resolve all services + throwing exception when any of services cannot be resolved?</p> http://stackoverflow.com/questions/1729442/the-element-configuration-in-namespace-mywindsorschema-has-invalid-child-elem 0 The element 'configuration' in namespace 'MyWindsorSchema' has invalid child element 'configSections' in namespace 'MyWindsorSchema' Richard77 2009-11-13T14:12:52Z 2009-11-13T14:12:52Z <p>Hello,</p> <p>In order to create the following section,</p> <pre><code>&lt;section name="castle" type="Castle.Windsor.Configuration.AppDomain.CastleSectionHandler, Castle.Windsor" /&gt; </code></pre> <p>I downloaded and put the "<strong>CastelWindsorSchema</strong>" in my C drive (as it was suggested by the read-me file). I referenced it this way in the Web.Config: (I kept everything as it is because I create the dev and castle in the C drive) </p> <pre><code> &lt;configuration xmlns="MyWindsorSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="MyWindsorSchema file://c:\dev\castle\windsor.xsd"&gt; </code></pre> <p>I'm getting the following warning:</p> <p>The element '<em>configuration</em>' in namespace '<em>MyWindsorSchema</em>' has invalid child element 'configSections' in namespace 'MyWindsorSchema'. List of possible elements expected: '<em>include, properties, facilities, components</em>' in namespace '<strong>MyWindsorSchema</strong>'. </p> <p>The configSections tag, which comes right after the configuration tag, is highlighted in bleu.</p> <p>Am I missing anyting??? Maybe I need to change "MyWindsorSchema" to something else??? </p> <p>Thanks for the help</p> <p>Rich</p> http://stackoverflow.com/questions/1727419/could-not-find-schema-information-for-the-element-castle 1 Could not find schema information for the element 'castle'. Richard77 2009-11-13T06:05:54Z 2009-11-13T09:09:38Z <p>Hello!</p> <p>I'm creating a Custom tag in my web.config. I first wrote the following entry under the <strong>configSections</strong> section. </p> <pre><code>&lt;section name="castle" type="Castle.Windsor.Configuration.AppDomain.CastleSectionHandler, Castle.Windsor" /&gt; </code></pre> <p>But, when I try to create a <strong>castle</strong> node inside the <strong>configuration</strong> node as below</p> <pre><code>&lt;castle&gt; &lt;components&gt; &lt;/components&gt; &lt;/castle&gt; </code></pre> <p>I get the following error message:"<strong>*Could not find schema information for the element '</strong>castle*<em>'<strong></em>." "*</strong>Could not find schema information for the element '<strong>components</strong>'***."</p> <p>Am I missing something? I can't find why. And, if I run the application anyway, I get the following error "<strong><em>Could not find section 'Castle' in the configuration file associated with this domain.</em></strong>" </p> <p>Ps.// The sample comes from "Pro ASP.NET MVC Framework"/Steven Sanderson/APress ISBN-13 (pbk): 978-1-4302-1007-8" on page 99.</p> <p>Thank you for the help</p> <p>============================================================</p> <p>Since I believe to have done exactly what's said in the book and did not succed, I ask the same question in different terms. <strong><em>How do I add a new node using the above information?</em></strong> </p> <p>=============================================================================</p> <p>Thank you. I did what you said and do not have the two warnings. However, I've go a big new warning:</p> <p>"The element '<strong>configuration</strong>' in namespace '<strong>MyWindsorSchema</strong>' has invalid child element '<strong>configSections</strong>' in namespace '<strong>MyWindsorSchema</strong>'. List of possible elements expected: '<em>include, properties, facilities, components' in namespace 'MyWindsorSchema</em>'."</p> http://stackoverflow.com/questions/1719725/inject-automapper 1 Inject AutoMapper Roger 2009-11-12T03:37:20Z 2009-11-12T08:38:04Z <p>I have been working on injecting AutoMapper into controllers. I like the implementation of Code Camp Server. It creates a wrapper around AutoMapper's IMappingEngine. The dependency injection is done using StructureMap. But I need to use Castle Windsor for my project. So, how do we implement the following dependency injection and set-up using Windsor? I am not looking for line-by-line equivalent implementation in Castle Windsor. If you want to do that, please feel free. Instead, what is Windsor equivalent of StructureMap's Registry and Profile? I need Profile to define CreateMap&lt;> like the following.</p> <p>Thanks.</p> <p><em>Meeting controller</em>:</p> <pre><code>public MeetingController(IMeetingMapper meetingMapper, ...) </code></pre> <p><em>Meeting Mapper</em>:</p> <pre><code>public class MeetingMapper : IMeetingMapper { private readonly IMappingEngine _mappingEngine; public MeetingMapper(IMappingEngine mappingEngine) { _mappingEngine = mappingEngine; } public MeetingInput Map(Meeting model) { return _mappingEngine.Map&lt;Meeting, MeetingInput&gt;(model); } ...... } </code></pre> <p><em>Auto Mapper Registry</em>: </p> <pre><code>public class AutoMapperRegistry : Registry { public AutoMapperRegistry() { ForRequestedType&lt;IMappingEngine&gt;().TheDefault.Is.ConstructedBy(() =&gt; Mapper.Engine); } } </code></pre> <p><em>Meeting Mapper Profile:</em></p> <pre><code>public class MeetingMapperProfile : Profile { public static Func&lt;Type, object&gt; CreateDependencyCallback = (type) =&gt; Activator.CreateInstance(type); public T CreateDependency&lt;T&gt;() { return (T)CreateDependencyCallback(typeof(T)); } protected override void Configure() { Mapper.CreateMap&lt;MeetingInput, Meeting&gt;().ConstructUsing( input =&gt; CreateDependency&lt;IMeetingRepository&gt;().GetById(input.Id) ?? new Meeting()) .ForMember(x =&gt; x.UserGroup, o =&gt; o.MapFrom(x =&gt; x.UserGroupId)) .ForMember(x =&gt; x.Address, o =&gt; o.Ignore()) .ForMember(x =&gt; x.City, o =&gt; o.Ignore()) .ForMember(x =&gt; x.Region, o =&gt; o.Ignore()) .ForMember(x =&gt; x.PostalCode, o =&gt; o.Ignore()) .ForMember(x =&gt; x.ChangeAuditInfo, o =&gt; o.Ignore()); } } </code></pre>