active questions tagged castle-windsor - Stack Overflow most recent 30 from stackoverflow.com 2010-03-17T04:06:00Z http://stackoverflow.com/feeds/tag/castle-windsor http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2450069/windsor-ihandlerselector-in-ria-services-visual-studio-2010-beta2 1 Windsor IHandlerSelector in RIA Services Visual Studio 2010 Beta2 Savvas Sopiadis http://stackoverflow.com/users/225180 2010-03-15T19:58:40Z 2010-03-16T07:32:45Z <p>Hi everybody! I want to implement multi tenancy using Windsor and i don't know how to handle this situation:</p> <p>i succesfully used <a href="http://mikehadlow.blogspot.com/2008/11/multi-tenancy-part-2-components-and.html" rel="nofollow">this</a> technique in plain ASP.NET MVC projects and thought incorporating in a RIA Services project would be similar.</p> <p>So i used IHandlerSelector, registered some components and wrote an ASP.NET MVC view to verify it works in a plain ASP.NET MVC environment. And it did!</p> <p>Next step was to create a DomainService which got an IRepository injected in the constructor. This service is hosted in the ASP.NET MVC application. And it actually ... works:i can get data out of it to a Silverlight application.</p> <p>Sample snippet:</p> <pre><code>public OrganizationDomainService(IRepository&lt;Culture&gt; cultureRepository) { this.cultureRepository = cultureRepository; } </code></pre> <p>Last step is to see if it works multi-tenant-like: it does not! The weird thing is this: using some line of code and writing debug messages in a log file i verified that the correct handler is selected! BUT this handler seems not to be injected in the DomainService. I ALWAYS get the first handler (that's the logic in my SelectHandler)</p> <p>Can anybody verify this behavior? Is injection not working in RIA Services? Or am i missing something basic??</p> <p>Development environment: Visual Studio 2010 Beta2</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/2433984/what-is-the-simplest-way-to-extend-castle-windsor-to-support-private-constructors -2 What is the simplest way to extend Castle windsor to support private constructors for every service Phil Good http://stackoverflow.com/users/202825 2010-03-12T16:07:35Z 2010-03-12T16:07:35Z <p>Hi there,</p> <p>We want to be able to Resolve services using Castle for implementation with private constructors.</p> <p>This is a fictive "use case" for that:</p> <pre><code>public class SingletonClass : ISingletonClass { private SingletonClass() {...} // Class users cannot create an instance public ISingletonClass Instance { get { // The intention here is to get an instance of this service // it has previously been configured as singleton in the container return Container.Resolve&lt;ISingletonClass&gt;(); } } } </code></pre> <p>We want to have the option to use those private constructors for every service, not only for a few specific cases. Hence, we're looking for a simple and generic solution for this.</p> <p>We looked for a solution using a custom component activator but found that we have to overrides a not-so trivial part of the default component activator, e.g. CreateInstance method.</p> <p>This is the code for this in the default component activator:</p> <pre><code> protected virtual object CreateInstance(CreationContext context, object[] arguments, Type[] signature) { object instance = null; Exception exception; Type implementation = base.Model.Implementation; bool flag = base.Kernel.ProxyFactory.ShouldCreateProxy(base.Model); bool flag2 = true; if (!(flag || !base.Model.Implementation.IsAbstract)) { throw new ComponentRegistrationException(string.Format("Type {0} is abstract.{2} As such, it is not possible to instansiate it as implementation of {1} service", base.Model.Implementation.FullName, base.Model.Service.FullName, Environment.NewLine)); } if (flag) { flag2 = base.Kernel.ProxyFactory.RequiresTargetInstance(base.Kernel, base.Model); } if (flag2) { try { if (this.useFastCreateInstance) { instance = FastCreateInstance(implementation, arguments, signature); } else { instance = ActivatorCreateInstance(implementation, arguments); } } catch (Exception exception1) { exception = exception1; throw new ComponentActivatorException("ComponentActivator: could not instantiate " + base.Model.Implementation.FullName, exception); } } if (flag) { try { instance = base.Kernel.ProxyFactory.Create(base.Kernel, instance, base.Model, context, arguments); } catch (Exception exception2) { exception = exception2; throw new ComponentActivatorException("ComponentActivator: could not proxy " + base.Model.Implementation.FullName, exception); } } return instance; } </code></pre> <p>It would be much easier if we could only overrides "ActivatorCreateInstance" or "FastCreateInstance" but they're closed.</p> <p>Are we on the wrong track?<br> Is there a much simpler way to do this in a generic manner?</p> <p>Thank you very much<br> Phil</p> http://stackoverflow.com/questions/2431811/wcf-rest-somethings-eating-my-return-http-status-codes 0 WCF REST: something's eating my return HTTP status codes Igor Brejc http://stackoverflow.com/users/55408 2010-03-12T09:57:53Z 2010-03-12T09:57:53Z <p>I have a custom IErrorHandler which catches certain exceptions thrown from web services and translates them to HTTP status codes. The problem is that, even when the handler sets the status code (404 for example), the Web server (IIS 7.5) always returns 400 (Bad Request). I tried other status codes and the result is the same ("The server encountered an error processing the request. See server logs for more details.").</p> <p>I tried explicity setting the status code in the ProvideFault method:</p> <pre><code>WebOperationContext.Current.OutgoingResponse.StatusCode = HttpStatusCode.NotFound; </code></pre> <p>This works, but the server still returns the HTML content.</p> <p>I know my handler catches exceptions (evident from debugging and logging files). BTW I'm using Windsor Castle's WCF integration. I also know IIS is not to blame, since I can explicitly set status codes in service methods, and this works OK.</p> <p>I'm just trying to find out where next to look (other extension points in WCF framework) which would cause this behavior. There's obviously something in WCF (or Castle) that overrides the HTTP response before sending it back.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/2409039/using-a-dependency-injection-container-in-an-enterprise-solution-with-multiple-di 1 Using a Dependency Injection Container in an enterprise solution with multiple different configurations KevinT http://stackoverflow.com/users/39561 2010-03-09T12:42:03Z 2010-03-11T18:16:38Z <p>Can anyone point me towards some good documentation / code examples on how best to manage the configuration of a DI container in a scenario where you need different configuations sets?</p> <p>We have a layered, distributed application that has multiple entry points (ie; a website, winforms app, office plugin etc). Depending on how you are using the solution (through a UI vs. an automated workflow for example), it needs to be configured slightly differently.</p> <p>We are using Windsor, and it's fluent configuration capabilities.</p> http://stackoverflow.com/questions/2423031/wcf-rest-windsor-error-handling 0 WCF REST + Windsor error handling Igor Brejc http://stackoverflow.com/users/55408 2010-03-11T06:30:05Z 2010-03-11T14:25:16Z <p>I want to handle application's internal exceptions in a consistent way so that REST web services return errors in a <a href="http://stackoverflow.com/questions/942951/rest-api-error-return-good-practices">RESTful way</a>. </p> <p>I'm using Castle's WCF integration and I couldn't find any good sources on how to do handle errors using <code>WcfIntegration.WindsorServiceHostFactory</code>. The only solution that comes to mind is to use Castle's interceptors on web service methods to catch "internal" exceptions and translate them to HTTP response properties (for example: <code>KeyNotFoundException</code> would be translated to <code>404 Not Found</code> status code). </p> <p>Are there any better ways? Thanks.</p> http://stackoverflow.com/questions/2420394/windsor-xml-configuration-of-generics 0 Windsor XML configuration of generics Savvas Sopiadis http://stackoverflow.com/users/225180 2010-03-10T20:38:55Z 2010-03-10T20:47:05Z <p>Hi everybody!</p> <p>How do i setup the configuration in XML (for Windsor Castle) for the following class?</p> <pre><code>public class Repository&lt;T&gt; : IRepository&lt;T&gt; where T : class { .... } </code></pre> <p>I know how to do it in code but i must use XML file</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/2418575/determine-if-a-given-type-can-currently-be-resolved-by-a-castle-windsor-container 0 Determine if a given type can currently be resolved by a Castle Windsor container Mike Sackton http://stackoverflow.com/users/123653 2010-03-10T16:25:06Z 2010-03-10T17:28:45Z <p>I have a scenario where I need to know if a specific type can currently be resolved by a Windsor container. The wrinkle is that this type has dependencies. So I have a <code>ProductRepository</code> class that implements <code>IRefDataRepository</code> and depends on <code>IProductDataProvider</code>. I need to know if I can successfully resolve <code>IRefDataRepository</code> from the container.</p> <p>I tried using <code>IKernel.HasComponent(typeof(IRefDataRepository))</code> <code>IKernel.GetAssignableHandlers(typeof(IRefDataRepository))</code> both of which return <code>ProductRepository</code> even there is no <code>IProductDataProvider</code> registered. (So <code>IWindsorContainer.Resolve(typeof(IRefDataRepository))</code> will throw)</p> <p>My current solution is to write an extension method that actually tries to resolve the type (via <code>IWindsorContainer.Resolve(IRefDataRepository)</code>), catches the exception, and returns true if the type resolves and false otherwise. But I'm wondering if there is a better way.</p> http://stackoverflow.com/questions/1498722/iis7-castle-microkernal-lifestyle-perwebrequestlifestylemodule-regestering-prob 0 IIS7 & Castle.Microkernal.Lifestyle.PerWebRequestLifestyleModule regestering problems Mr. Flibble http://stackoverflow.com/users/77775 2009-09-30T15:06:31Z 2010-03-09T13:16:22Z <p>I'm trying to deploy an ASP.NET MVC app to iis7 and am getting the error:</p> <p><code>Looks like you forgot to register the http module Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule Add '&lt;add name="PerRequestLifestyle" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule, Castle.MicroKernel" /&gt;' to the &lt;httpModules&gt; section on your web.config</code></p> <p>My httpModules contains:</p> <pre><code>&lt;httpModules&gt; &lt;add name="PerRequestLifestyle" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule, Castle.MicroKernel"/&gt; &lt;/httpModules&gt; </code></pre> <p>system.webServer handlers section contains</p> <pre><code>&lt;handlers&gt; &lt;remove name="PerRequestLifestyle"/&gt; &lt;add name="PerRequestLifestyle" preCondition="managedHandler" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule, Castle.Microkernel" verb="*" path="*.castle" /&gt; &lt;/handlers&gt; </code></pre> <p>I added the <code>verb="*" path="*.castle"</code> part as I was getting errors when they were missing. Not sure if their values are correct.</p> <p>Anyone know what the problem is here?</p> http://stackoverflow.com/questions/2194265/i-am-looking-for-a-simple-yet-practical-and-robust-ioc-di-framework-for-net 2 I am looking for a simple yet practical and robust IOC\DI framework for .net Jenny http://stackoverflow.com/users/265531 2010-02-03T18:13:49Z 2010-03-05T14:54:43Z <p>I am going to use it in a project with less-experienced developers so a complex framework such as Spring.NET is not an option. I was thinking about:</p> <ol> <li>Ninject</li> <li>Castle Windsor</li> <li>StructureMap</li> </ol> <p>Which would present a moderate learning curve without losing flexibility?</p> <p>and another question - where is the correct place to put the configuration? Since the kernel/configuration on a 3-tier ASP.NET application (not MVC!!! all examples are using MVC :) )</p> http://stackoverflow.com/questions/2380846/castle-windsor-overwrite-a-component-in-the-future 0 Castle-Windsor: Overwrite a component in the future George Mauer http://stackoverflow.com/users/5056 2010-03-04T16:20:13Z 2010-03-04T19:16:28Z <p>I have the following use case:</p> <p>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 are expressed as custom implementations of IRegistration.</p> <p>Only then do I resolve my application start point.</p> <p>One of the things that I would like a plugin to do is overwrite a service implementation. Something like this:</p> <pre><code>public class SomePlugin { public void Register(IKernel kernel) { kernel.RemoveComponent(typeof(DefaultServiceImplementation).FullName); kernel.Register( Component.For&lt;IService&gt;() .ImplementedBy&lt;AlternateServiceImplementation&gt;()) } } </code></pre> <p>However this does not work if any of the components already registered have a dependency on IService.</p> <p>I know that I can register the plugins first, but that's limiting for several other reasons. How can I fulfill my specific requirement?</p> <p>Best thing I could come up with is something like</p> <pre><code>kernel.ResolvingComponent += (model, a, b) =&gt; { if(model.Service == typeof(IService)) model.Implementation = typeof(AlternateServiceImplementation); } </code></pre> <p>I think this could work in some limited scenarios but it is far from ideal.</p> http://stackoverflow.com/questions/2378112/castle-windsor-how-to-not-to-load-all-components-in-a-castle-windsor-xml-confi 1 Castle windsor : how to not to load all components in a castle windsor xml configuration when "Resolve" is called Olivier DUVAL http://stackoverflow.com/users/55465 2010-03-04T09:33:58Z 2010-03-04T18:32:19Z <p>I would like to use "strategy pattern" with 2 Web projects, my configuration file (and only with configuration file) :</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;configuration&gt; &lt;components&gt; &lt;!-- container ORM --&gt; &lt;component id="DALReseauContainer" type="ReseauRules.Db.BLL.DbReseauWorkingContextContainer, ReseauRules" service="ReseauConnector.BLL.IReseauWorkingContextContainer, ReseauConnector"&gt; &lt;/component&gt; &lt;!-- remote controler (Web Service) --&gt; &lt;component id="remoteReseauManager" type="ReseauConnector.BLL.RemoteReseauManager, ReseauConnector" service="ReseauConnector.BLL.IReseauManager, ReseauConnector" lifestyle="transient"&gt; &lt;/component&gt; &lt;!-- local controler --&gt; &lt;component id="localReseauManager" type="ReseauRules.Db.BLL.DbReseauManager, ReseauRules" service="ReseauConnector.BLL.IReseauManager, ReseauConnector" lifestyle="transient"&gt; &lt;parameters&gt; &lt;container&gt;${DALReseauContainer}&lt;/container&gt; &lt;/parameters&gt; &lt;/component&gt; &lt;/components&gt; &lt;/configuration&gt; </code></pre> <p>project A uses "remoteReseauManager" and references only ReseauConnector, can call </p> <pre><code>container.Resolve&lt;IReseauManager&gt;("remoteReseauManager"); </code></pre> <p>project B uses "localReseauManager" and references ReseauConnector AND ReseauRules, can call </p> <pre><code>container.Resolve&lt;IReseauManager&gt;("localReseauManager"); </code></pre> <p>when I call </p> <pre><code>IWindsorContainer container = new WindsorContainer(new Castle.Windsor.Configuration.Interpreters.XmlInterpreter()); </code></pre> <p>Windsor tries to resolve each components, and as in project A,ReseauRules does not exist, Windsor can't load ReseauRules (as expected).</p> <p>How to tell to Windsor do not load a component in this context (configuration file) ?</p> <p>Thanks a lot.</p> http://stackoverflow.com/questions/2375107/some-objects-created-with-perwebrequest-are-not-garbage-collected-at-the-end-of-w 1 Some objects created with PerWebRequest are not garbage collected at the end of web request. mbergal http://stackoverflow.com/users/171834 2010-03-03T21:27:45Z 2010-03-04T07:53:19Z <p>Given</p> <pre><code> public class a : IDisposable { public static int counter; public a() { counter++; } ~a() { counter--; } public void Dispose() { } } </code></pre> <p>With registration:</p> <pre><code>application_container = new WindsorContainer( ); application_container.Register( Component.For&lt;a&gt;( ).ImplementedBy&lt;a&gt;( ).LifeStyle.PerWebRequest ); </code></pre> <p>Proper stuff in web.config:</p> <pre><code> &lt;add name="PerRequestLifestyle" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule, Castle.MicroKernel"/&gt; </code></pre> <p>Using version of Castle built from SVN. With web page code:</p> <pre><code> public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { GC.Collect( 2 ); var a = Global.application_container.Resolve&lt;Global.a&gt;(); Response.Write( Global.a.counter.ToString() ); } } </code></pre> <p>I get that ~a() is not called and RedGate profiler shows that a is not being collected, the reference to it stuck in AllComponentsReleasePolicy.instance2burden.</p> http://stackoverflow.com/questions/2370546/castle-windsor-register-class-with-internal-constructor 1 Castle Windsor: Register class with internal constructor? joniba http://stackoverflow.com/users/163341 2010-03-03T10:57:40Z 2010-03-03T13:47:50Z <p>A Castle Windsor question: Is it possible to register a class that has an internal constructor with the container?</p> <p>Thanks Joni</p> http://stackoverflow.com/questions/1329618/can-i-tell-castle-windsor-to-create-a-component-in-a-separate-appdomain 1 Can I tell Castle Windsor to create a component in a separate AppDomain? Michael L Perry http://stackoverflow.com/users/7668 2009-08-25T17:06:18Z 2010-03-03T03:08:01Z <p>I've created a multi-threaded service that uses Castle Windsor to create components to run on separate threads. I Resolve an component by name with parameters for each thread.</p> <p>I'm running into concurrency problems with a 3rd party library used by the components. I suspect that isolating those components in separate AppDomains will resolve the problem.</p> <p>Is there a way to have Resolve create the component using a different AppDomain?</p> <pre><code>private ActivityThread NewActivityThread(ActivityInstance activityInstance) { // Set up the creation arguments. System.Collections.IDictionary arguments = new Dictionary&lt;string, string&gt;(); activityInstance.Parameters.ForEach(p =&gt; arguments.Add(p.Name, p.Value)); // Get the activity handler from the container. IActivity activity = Program.Container.Resolve&lt;IActivity&gt;(activityInstance.Name, arguments); // Create a thread for the activity. ActivityThread thread = new ActivityThread(activity, activityInstance, _nextActivityID++); return thread; } public ActivityThread(IActivity activity, ActivityInstance instance, int id) { _activity = activity; _instance = instance; _id = id; } public void Start() { if (_thread == null) { // Create a new thread to run this activity. _thread = new Thread(delegate() { _activity.Run(); }); _thread.Name = _activity.ToString(); _thread.SetApartmentState(ApartmentState.STA); _thread.Start(); } } </code></pre> http://stackoverflow.com/questions/2367016/is-there-a-better-way-to-use-castle-windsors-api-for-factories 1 Is there a better way to use Castle Windsor's API for Factories? eduncan911 http://stackoverflow.com/users/56693 2010-03-02T21:42:08Z 2010-03-03T01:33:41Z <p>I am open to other IoC containers, such as NInject and StructureMap if they are much cleaner than this. I hear that StructureMap just introduced "containers" that may simplify this , perhaps?</p> <p>As the title says, is there a better way? This seems like a lot of code, just to register an object that requires a factory to create it.</p> <pre><code>// The process to register an object, with a factory method var cfg = new MutableConfiguration(p.Name); cfg.Attributes["factoryId"] = p.TypeFactory.Name; cfg.Attributes["factoryCreate"] = "Create"; var model = _container.Kernel.ComponentModelBuilder.BuildModel( p.Name, p.TypeService, p.Type, null); model.LifestyleType = LifestyleType.Pooled; model.Configuration = cfg; _container.Kernel.AddCustomComponent(model); </code></pre> <p>Versas the "non-factory" way of adding a component:</p> <pre><code>// registering a component with no factory method _container.AddComponentLifeStyle( p.Name, p.TypeService, p.Type, LifestyleType.Singleton); </code></pre> <p>The first seems overly complex.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/391391/castle-windsor-to-unity-can-you-auto-configure-in-unity-the-same-way-you-can-in 4 Castle Windsor to Unity - can you auto-configure in Unity the same way you can in CW? Adam B http://stackoverflow.com/users/0 2008-12-24T13:19:53Z 2010-03-02T22:42:52Z <p>Hello,</p> <p>I don't know if this is too specific a question, if that is possible, but I'm having to port an app that uses Castle Windsor to Unity so that there isn't a reliance on non-microsoft approved libraries. I know I know but what are you going to do.</p> <p>Anyway I've managed it but I'm not happy with what I've got. In Windsor I had this:</p> <pre><code>Register( AllTypes.Of(typeof(AbstractPresenter&lt;&gt;)).FromAssemblyNamed("Links.Mvp"), AllTypes.Of(typeof(IView)).FromAssemblyNamed("Links.WinForms").WithService.FromInterface()); </code></pre> <p>which I've converted to this in unity</p> <pre><code>RegisterType&lt;IMainView, MainView&gt;(); RegisterType&lt;IConfigureLinkView, ConfigureLinkView&gt;(); RegisterType&lt;IConfigureSourceView, ConfigureSourceView&gt;(); RegisterType&lt;IConfigureSinkView, ConfigureSinkView&gt;(); RegisterType&lt;MainPresenter, MainPresenter&gt;(); RegisterType&lt;ConfigureLinkPresenter, ConfigureLinkPresenter&gt;(); RegisterType&lt;ConfigureSourcePresenter, ConfigureSourcePresenter&gt;(); RegisterType&lt;ConfigureSinkPresenter, ConfigureSinkPresenter&gt;(); </code></pre> <p>As you can see I'm having to register every single thing rather than be able to use some sort of auto-configuration. So my question is: is there a better way of doing this in unity?</p> <p>Thanks,</p> <p>Adam.</p> http://stackoverflow.com/questions/2077055/ioc-on-ivalidationdictionary-with-castle-windsor 1 IOC on IValidationDictionary with Castle Windsor lloydphillips http://stackoverflow.com/users/151522 2010-01-16T10:51:04Z 2010-03-02T22:00:03Z <p>I'm new to Castle Windsor and am just using the latest version. I've created entries for my repositories which are working fine but I have one final dependency that I'm passing into my controller.</p> <p>I've created a ModelStateWrapper which inherits from IValidationDictionary. The ModelStateWrapper takes a ModelStateDictionary in it's constructor so that in my code I can pass the following as an example:</p> <pre><code>IMembershipService _memSvc; IValidationDictionary _validationService; public AccountController() { _validationService = new ModelStateWrapper(this.ModelState); _memSvc = new MembershipService(_validationService); } </code></pre> <p>In my tests I can then do this using Moq:</p> <pre><code>var v = new Mock&lt;ModelStateDictionary&gt;(); _validationService = new ModelStateWrapper(v.Object); _service = new MembershipService(_validationService); </code></pre> <p>I can't seem to get Castle to inject ModelState in with the ModelStateWrapper. I have no idea where to start and it seems I can't just 'ignore it' and try to manually inject as Castle is searching for dependencies and throwing me an error saying a dependency is remaining.</p> <p>How do I configure Castle Windsor to use the ModelStateWrapper based off IValidationDictionary and also include ModelState as the constructor parameter?</p> <p>Lloyd</p> http://stackoverflow.com/questions/2360624/aptca-securityexception-with-asp-net-development-server-running-against-machine-l 0 APTCA SecurityException with ASP.NET Development Server running against machine-level Full-Trust Stunned Dev http://stackoverflow.com/users/284081 2010-03-02T02:55:57Z 2010-03-02T12:33:11Z <p>The strange thing is that, my teammates and I are faced with APTCA SecurityException randomly when running our ASP.NET MVC website against ASP.NET Development Server (local development). Machine-level web.config shows that trustLevel is, by default, "Full". There is no override in application-level web.config. The exception happens randomly. For my teammates' case, they can restart the application to get it work. For my case, I have to restart Windows and hope it will work (50/50) after the restart.</p> <p>How could such Medium-Trust-ish problem happen to us? Is there a way to convince CLR to trust our web application at the local?</p> <p>Thank you for reading (and possibly help).</p> <pre><code>[SecurityException: That assembly does not allow partially trusted callers.] System.Security.CodeAccessSecurityEngine.ThrowSecurityException(Assembly asm, PermissionSet granted, PermissionSet refused, RuntimeMethodHandle rmh, SecurityAction action, Object demand, IPermission permThatFailed) +150 System.Reflection.MethodBase.PerformSecurityCheck(Object obj, RuntimeMethodHandle method, IntPtr parent, UInt32 invocationFlags) +0 System.RuntimeType.CreateInstanceImpl(Boolean publicOnly, Boolean skipVisibilityChecks, Boolean fillCache) +272 System.Activator.CreateInstance(Type type, Boolean nonPublic) +67 System.Activator.CreateInstance(Type type) +6 Castle.Windsor.Installer.DefaultComponentInstaller.InstantiateFacility(Type facilityType) +192 </code></pre> http://stackoverflow.com/questions/986019/database-injection-into-a-validation-attribute-with-asp-mvc-and-castle-windsor 3 Database injection into a validation attribute with ASP MVC and Castle Windsor David E http://stackoverflow.com/users/121905 2009-06-12T10:29:04Z 2010-02-28T03:17:01Z <p>Hi,</p> <p>I need some help - I am trying to use a custom validation attribute in an ASP.NET MVC web project that needs to make a database call.</p> <p>I have windsor successfully working for the controllers and the IRepository interface is injected normally. The problem arrises when I need to inject the repository into the attribute class. </p> <p>The attribute class has the following code:</p> <pre><code>public class ValidateUniqueUrlNodeAttribute : AbstractValidationAttribute { private readonly string message; private readonly IArticleRepository articleRepository; public ValidateUniqueUrlNodeAttribute(string message) { this.message = message; } public ValidateUniqueUrlNodeAttribute(string message, IArticleRepository articleRepository):this(message) { this.articleRepository = articleRepository; } public override IValidator Build() { var validator = new UniqueUrlNodeValidator(articleRepository) { ErrorMessage = message }; ConfigureValidatorMessage(validator); return validator; } </code></pre> <p>My problem is that I cannot seem to make Windsor intercept the contruction of the attribute to pass in the IArticleRepository </p> <p>The current code in my global.asax file is as follows:</p> <pre><code>container = new WindsorContainer(); ControllerBuilder.Current.SetControllerFactory(new WindsorControllerFactory(Container)); container .RegisterControllers(Assembly.GetExecutingAssembly()) .AddComponent&lt;IArticleRepository, ArticleRepository&gt;() .AddComponent&lt;ValidateUniqueUrlNodeAttribute&gt;(); </code></pre> <p>Any help would be greatly appreciated. </p> http://stackoverflow.com/questions/2347150/nhibernate-and-windsor-assembly-conflicts 0 NHibernate and Windsor assembly conflicts Matt http://stackoverflow.com/users/255875 2010-02-27T11:31:39Z 2010-02-27T12:41:03Z <p>Hi, I am having an issue getting Hibernate and Windsor to work together. My setup details are as follows <br/><br/></p> <p>I have two projects<br/> -DomainModel<br/> -MVCApp<br/> <br/> I have downloaded NHibernate 2.1.2 and Windsor 2.1.1 <br/> I added the following references to DomainModel from the required_Bins folder of the NHibernated download - <br/> Antlr3,Iese,log4net and NHibernate 2.1.2.4 <br/> I also added references in DomainModel to files for Lazy_loading including <br/><br/></p> <p>Castle.Core - 1.1.0.0<br/> Castle.DynamicProxy2 - 2.1.0.0 <br/>NHibernate.ByteCode.Castle - 2.1.2.4<br/><br/> The MVCApp has the following references: <br/> <br/>Castle.Core - 1.2.0.6623<br/> Castle.Microkernel - 2.1.0.6655<br/> Castle.Windsor - 2.1.0.6655<br/> Castle.DynamicProxy2 - 2.2.0.6628 <br/><br/> When running the app I get the Error : <br/><br/> Could not load file or assembly 'Castle.DynamicProxy2, Version=2.1.0.0,<br/> Calling assembly : NHibernate.ByteCode.Castle, Version=2.1.2.4000<br/><br/> The MVC bin folder has the Castle.DynamicProxy2 - 2.2.0.6628 version, hence the error after the older version was requested. <br/><br/> How do I go about getting this to work? What am I missing or including incorrectly? Please help.. Thanks.</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 http://stackoverflow.com/users/55408 2009-11-30T10:01:39Z 2010-02-27T03:40:37Z <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/1969669/windsor-fluent-registration-all-types-in-an-assembly 1 Windsor Fluent Registration - All types in an assembly Kenneth Cochran http://stackoverflow.com/users/71200 2009-12-28T14:19:52Z 2010-02-25T16:19:38Z <p>I wanted to use the fluent interface in Castle Windsor. Since this isn't available in the "release" binaries for .NET 2.0 I compiled from trunk, which is reported to be fairly stable. I compiled just:</p> <ul> <li>Castle.Core.dll</li> <li>Castle.DynamicProxy.dll</li> <li>Castle.MicroKernel.dll</li> <li>Castle.Windsor.dll</li> </ul> <p>This should be all that is necessary for what I need it for but things aren't working as expected. I have an assembly collection which I iterate through and attempt to load all types contained within each assembly using the following code:</p> <pre><code>var container= new WindsorContainer(); foreach (var assembly in _assemblies) { container.Register(AllTypes.FromAssembly(assembly)); } </code></pre> <p>I stepped through the code with a debugger. <code>_assemblies</code> has 2 assemblies in it. Each assembly has numerous types defined in it. The loop iterates twice without error but when it completes <code>container</code> is still empty.</p> <p>Update: A little clarification. The latest binaries do have the fluent interface, however they target the .NET 3.5 framework. I am working with .NET 2.0. The latest binary release to support .NET 2.0 was RC3.</p> http://stackoverflow.com/questions/2326009/caste-dynamic-proxy-in-windsor-container 0 Caste Dynamic Proxy in Windsor Container Iffy http://stackoverflow.com/users/202471 2010-02-24T12:42:17Z 2010-02-25T15:13:47Z <p>Hi, I've got a bit of a problem. I'm working in the Caste 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 method name perform some logging. I have been looking at Interceptors and at the moment i am using the IInterceptor interface implemented as a class to perform this logging using aspects. The issue is if i want to perform the logging on a specific method then it gets messy as i need to put in some logic into my implemented aspect to check the method name etc...</p> <p>I have read that you can do all of this using Dynamic Proxies and the IInterceptorSelector interface and the IProxyGenerationHook interface. I have seen a few examples of this done on the net but i am quite confused how this all fits into the Windsor container. I mean i am using the windsor container which in my code is actually a ref to the IWindsorContainer interface to create all my objects. All my configuration is done in code rather than XML. </p> <p>Firstly does anyone know of a way to perform method specific AOP in the windsor container besides the way i am currently doing it.</p> <p>Secondly how do i use the Dynamic Proxy in the windsor container ?</p> <p>Below i have added the code where i am creating my proxy and registering my class with the interceptors</p> <pre><code> ProxyGenerator _generator = new ProxyGenerator(new PersistentProxyBuilder()); IInterceptorSelector _selector = new CheckLoggingSelector(); var loggingAspect = new LoggingAspect(); var options = new ProxyGenerationOptions(new LoggingProxyGenerationHook()) { Selector = _selector }; var proxy = _generator.CreateClassProxy(typeof(TestClass), options, loggingAspect); TestClass testProxy = proxy as TestClass; windsorContainer.Register( Component.For&lt;LoggingAspect&gt;(), Component.For&lt;CheckLoggingAspect&gt;(), Component.For&lt;ExceptionCatchAspect&gt;(), Component.For&lt;ITestClass&gt;() .ImplementedBy&lt;TestClass&gt;() .Named("ATestClass") .Parameters(Parameter.ForKey("Name").Eq("Testing")) .Proxy.MixIns(testProxy)); </code></pre> <p>The Test Class is below:</p> <pre><code>public class TestClass : ITestClass { public TestClass() { } public string Name { get; set; } public void Checkin() { Name = "Checked In"; } } </code></pre> <p>as for the interceptors they are very simple and just enter a method if the name starts with Check.</p> <p>Now when i resolve my TestClass from the container i get an error.</p> <p>{"This is a DynamicProxy2 error: Mixin type TestClassProxy implements IProxyTargetAccessor which is a DynamicProxy infrastructure interface and you should never implement it yourself. Are you trying to mix in an existing proxy?"}</p> <p>I know i'm using the proxy in the wrong way but as i haven't seen any concrete example in how to use a proxy with the windsor container it's kind of confusing.</p> <p>I mean if i want to use the LoggingProxyGenerationHook which just tell the interceptors to first for methods that start with the word "check" then is this the correct way to do it or am i completely on the wrong path. I just went down the proxy way as it seems very powerfull and i would like to understand how to use these proxies for future programming efforts.</p> <p>Thanks a lot.</p> http://stackoverflow.com/questions/197278/using-castle-windsors-fluent-interface-to-register-components-in-a-decorator-cha 1 Using Castle Windsor's fluent interface to register components in a decorator chain, when there are also specialised service-types? Peter Mounce http://stackoverflow.com/users/20971 2008-10-13T11:18:25Z 2010-02-25T14:28:19Z <p>I am trying to implement a decorator chain for my data-access based on IRepository. I have a Repository that does the data- access (at the moment just in-memory list) {1}, and I have one that does validation {2}. On top of that, I have a specialisation of my Repository, IUsersRepository {3}, which defines another method on the base interface. I am running on the latest trunk revision 5376.</p> <p>I would like to be able to register my components using the fluent interface - is it possible to specify, as it is via XML, the key of the service to use as the innerRepo? If so, how? (See <a href="http://blog.bittercoder.com/PermaLink,guid,4863e460-2985-475c-9266-80b4895e80de.aspx" rel="nofollow">Bitter Coder Decorator tutorial</a> for an XML-config example). I would prefer to not need to rely on the order of registrations, apart from anything else.</p> <p>I am following <a href="http://blog.bittercoder.com/PermaLink,guid,63653be2-d0d4-4a0b-b3e5-a1572aad5c8b.aspx" rel="nofollow">this blog post</a>.</p> <p>I have been able to get the decorator chain working if I ask the container for IRepository {4}; I see my ValidatingRepository methods get called before my data-access. But I have not been able to get it working if I ask the container for IUserRepository (I get an InvalidCastException - I guess this is expected, but is it work-aroundable?).</p> <p>I would like to avoid needing to use one decorated-repo and one specialised-methods repository in my services; this strikes me as error-prone. At the moment, my specialised methods are all to do with fetching entities by different criteria - I suppose I could make my Get method take a detached-criteria - that would allow me to only have one on my interface, and eliminate the need for the specialised interfaces. Except that I'm not allowed to because we haven't decided to definitely use NHibernate. Perhaps if I made IRepo.Get take a delegate or an IQueryable? Any ideas? I've been banging my head against this all morning and wouldn't be surprised if I have tunnel vision, and there's a different, better, approach; any suggestions are welcomed! </p> <p>{1} - {4} can be seen at <a href="http://utilitybase.com/paste/9003" rel="nofollow">utilitybase</a>'s copy/paste facility.</p> http://stackoverflow.com/questions/2272104/configure-castle-windosor-and-generic 2 configure Castle Windosor and generic Mirko http://stackoverflow.com/users/221471 2010-02-16T10:27:45Z 2010-02-25T13:19:23Z <p>Hi, this is my code in Global.asax </p> <pre><code> WindsorContainer container = new WindsorContainer(); container.Register(Component.For(typeof(IRepository&lt;&gt;)) .ImplementedBy(typeof(NHRepository&lt;&gt;)) .LifeStyle.Transient) </code></pre> <p>I've tried to translate it in a xml config file with this but didn't work</p> <pre><code>&lt;component id="NHRepository" service="NCommon.Data.IRepository'1, NCommon" type="NCommon.Data.NHibernate.NHRepository'1, NCommon.NHibernate" lifestyle="transient"&gt; &lt;/component&gt; </code></pre> <p>How can I convert this code in a config file as Windsor.config ?</p> <p>Tanks Mirko</p> http://stackoverflow.com/questions/2327664/mvccontrib-windsor-setup-component-with-parameter 0 MvcContrib Windsor Setup Component With Parameter MHinton http://stackoverflow.com/users/1203 2010-02-24T16:32:25Z 2010-02-24T17:50:16Z <p>I am using the MvcContrib library with Castle Windsor and I am having a problem with setting a parameter when I register a component.</p> <p>I have the following interfaces for classes that wrap a DataContext. I want to be able to specify which DataContext to use for different services because I am connecting to several databases to retrieve data.</p> <pre><code>public interface IDataContext { DataContext Context { get; } } public interface IReportingDC : IDataContext { } public class Repository&lt;T&gt; : IRepository&lt;T&gt; where T : class { </code></pre> <p>public IDataContext DC { get; set; }</p> <pre><code> public Repository(IDataContext dataContext) { DC = dataContext; } } </code></pre> <p>Here are the registration lines from my global.asax.cs.</p> <pre><code>container.AddComponentLifeStyle&lt;IDataContext, MainDataContext&gt;(Castle.Core.LifestyleType.PerWebRequest); container.AddComponentLifeStyle&lt;IReportingDC, ReportingDC&gt;(Castle.Core.LifestyleType.PerWebRequest); container.Register(Component.For&lt;IRepository&lt;ReportingTotals&gt;&gt;() .ImplementedBy&lt;Repository&lt;ReportingTotals&gt;&gt;() .Parameters(Parameter.ForKey("dataContext").Eq("IReportingDC")) .LifeStyle.PerWebRequest ); </code></pre> <p>When I try and load the page I get the following error.</p> <p>"Key invalid for parameter dataContext. Thus the kernel was unable to override the service dependency"</p> http://stackoverflow.com/questions/1520849/how-to-setup-windsor-component-that-needs-to-depend-on-a-dynamic-string 1 How to setup Windsor component that needs to depend on a dynamic string ? driis http://stackoverflow.com/users/13627 2009-10-05T15:41:05Z 2010-02-23T19:07:37Z <p>I have a Castle Windsor component, that depends on a string. The string needs to be determined at runtime, based on another string, which is constant and can be set in the component configuration. How do I wire this up using Castle Windsor ? </p> <p>The problem is general, but the specific scenario I need it for is a class that takes the full path to file in a constructor, but since I am running a ASP .NET app, I only know the virtual (relative) path of the file when writing the configuration file.</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 http://stackoverflow.com/users/202382 2009-11-13T14:12:52Z 2010-02-23T09:50:04Z <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/2297282/logging-with-castle-facilities-logging-and-log4net 1 Logging with Castle.Facilities.Logging and log4net Booser http://stackoverflow.com/users/191177 2010-02-19T15:11:07Z 2010-02-22T22:35:13Z <p>Hello,</p> <p>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. </p> <pre><code>&lt;configuration&gt; &lt;configsections&gt; &lt;section name="castle" type="Castle.Windsor.Configuration.AppDomain.CastleSectionHandler, Castle.Windsor" /&gt; &lt;section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /&gt; &lt;/configsections&gt; &lt;castle&gt; &lt;facilities&gt; &lt;facility id="logging" type="Castle.Facilities.Logging.LoggingFacility, Castle.Facilities.Logging" loggingApi="log4net" /&gt; &lt;/facilities&gt; &lt;components&gt; &lt;component id="form1" type="WinFormsActiveRecordSample.Form1, WinFormsActiveRecordSample" /&gt; &lt;/components&gt; &lt;/castle&gt; &lt;log4net&gt; &lt;root&gt; &lt;level value="ALL" /&gt; &lt;appender-ref ref="FileAppender" /&gt; &lt;/root&gt; &lt;appender name="FileAppender" type="log4net.Appender.FileAppender"&gt; &lt;file value="main.log" /&gt; &lt;appendToFile value="true" /&gt; &lt;layout type="log4net.Layout.PatternLayout"&gt; &lt;conversionPattern value="%date{dd.MM.yy HH:mm:ss} %-5level %logger - %message%newline" /&gt; &lt;/layout&gt; &lt;/appender&gt; &lt;/log4net&gt; &lt;/configuration&gt; </code></pre> <p>In my eyes this should be working, but it doesnt. When i set loggingApi="console" it logs correctly. When i change it to log4net it does nothing. The log4net configuration was taken from another project where the block is working. What must i do that the logfile was used? Must there be a special log4netconfiguration?</p> <p>Thanks for any hint</p> <p>Boris</p> http://stackoverflow.com/questions/132940/why-does-castle-windsor-hold-onto-transient-objects 8 Why does Castle Windsor hold onto transient objects? Scott Langham http://stackoverflow.com/users/11898 2008-09-25T12:16:08Z 2010-02-22T15:08:03Z <p>Recently I noticed my application appears to be eating memory that never gets released. After profiling with CLRProfiler I've found that the Castle Windsor container I'm using is holding onto objects. These objects are declared with the lifestyle="transient" attribute in the config xml.</p> <p>I've found if I put an explicit call to IWindsorContainer.Release(hangingObject), that it will drop its references.</p> <p>This is causing a problem though, I wasn't expecting that with a transient lifestyle object CastleWindsor would keep a reference and effectively create a leak. It's going to be a rather mundane and error prone task going around inserting explicit Release calls in all the appropriate places.</p> <p>Have you seen this problem, and do you have any suggestions for how to get around it?</p>