Castle Windsor is an Inversion of Control container for .NET and Silverlight. Current version is 3.2, released in February 2013. It has a comprehensive documentation that can answer most of your questions so it's always worthwhile to RTM first. Also check out its group on Google groups, which ...
1
vote
0answers
25 views
Windsor Castle/ DI and object models
I use Windsor Castle quite a while now. It is just perfect for environments where data is located in a database or the like, where the repository pattern or the unitofwork pattern do work well.
Now I ...
0
votes
1answer
36 views
Exception when resolving generically typed concrete class from non-generic interface
The Context
I have a non-generic interface, IInputEventProvider that is implemented by a concrete class, InputEventProvider<TState, TInputEvent>.
In my installer, I register the concrete type ...
1
vote
1answer
39 views
Log4Net working locally but not on remote Azure DB
I locally develop an ASP.NET MVC application and use Log4Net to log message on the local database with the following connection string (log4net.config):
<connectionType ...
0
votes
1answer
21 views
registering open generic decorators for typed implementations in castle windsor
While trying to coerce Windsor into wrapping an implementation with a random number of decorators, i've stumbled upon the following:
i have 3 decorators and an implementation all using the same ...
2
votes
0answers
57 views
Container not disposing transient components
I'm not sure whether this is more of an NServiceBus issue, a Windsor issue, or just my own stupidity problem - but I'm experiencing a memory leak which seems to point to lots of transient components ...
0
votes
2answers
32 views
MVC 4 : Controller not found says WindsorControllerFactory
I have this class WindsorControllerFactory which inherits from DefaultControllerFactory
public class WindsorControllerFactory : DefaultControllerFactory
{
private readonly IKernel ...
0
votes
1answer
42 views
Castle Windsor IInterceptor Configuration (Nancy bug)
So I ran into this issue with the Windsor bootstrapper for Nancy. I managed to whip together a small test project where I can reproduce what is going wrong. You can find the project here.
What seems ...
0
votes
1answer
44 views
How to configure “Windsor NHibernate Facility” by C# code, not xml?
i try to integrate Castle Windsor and Nhibernate Facility with my legacy old project recently, follow the doc(http://docs.castleproject.org/Windsor.NHibernate-Facility.ashx).
<facilities>
...
0
votes
1answer
37 views
How can I properly set up a cache on a typedfactory using the decorator pattern (Castle Windsor)?
I'm using Castle Windsor and I'm trying to set up a cache on a TypedFactory using the decorator pattern. It works fine until I'm trying to dispose of the Windsor container (when shutting down the ...
1
vote
2answers
62 views
Windsor Castle object factory “GetByName” injecting properties
I use Castle Windsor in my c# project for DI and I've this scenario:
public class Class1:IMyClass
{
public string Name{get{return "Class1";}}
public int Version {get; set;}
private ...
0
votes
1answer
23 views
Castle Windsor & Registering ApplicationContext
I'm trying to register ApplicationContext, but keep getting an error.
My Windsor Installer looks like this:
public void Install(IWindsorContainer container, IConfigurationStore store)
{
...
0
votes
1answer
30 views
Register interfaces with no concrete implementations to return a generated type/proxy
I want to auto register all interfaces which name ends with "Service" and also doesn't have concrete implementations to be resolved to a generated type/proxy (which off course differs per interface).
...
0
votes
1answer
52 views
Castle Windsor: PerWebRequest in controller
I am using Castle Windsor in MVC application and i have got this problem:
I have IUnitOfWorkProvider dependency which I want to have PerWebRequest lifestyle.
In Controller I have these two ...
0
votes
1answer
44 views
How to register same class twice with different dependencies
I would like to configure Castle Windsor to create two components of same type (Foo -> IFoo), but with different constructor inputs. I would also later like to consume both components when creating ...
0
votes
1answer
30 views
How can I resolve dependency in Castle Windsor Factory?
I read about factories in CastleWindsor but I cannot get it clear. Hope anyone could help me.
I have this typed factory in an MVC4 project.
public interface IOrderProcessorFactory
{
T ...
0
votes
1answer
109 views
Manage multiple ravendb document stores through castle windsor in an MVC app?
I twist myself around a workable solution to use several databases in RavenDB for an ASP.Net MVC app using Castle Windsor for the wiring.
This is the current installer
public class RavenInstaller : ...
0
votes
0answers
67 views
Microsoft.Practices.ServiceLocation.ServiceLocator + Windsor Castle exception
I'm having a very strange error, it only happens when I run my code on Windows server 2008 and not win7. I've added a LogHelper to legacy code using Windsor+log4net.
The line ...
1
vote
2answers
46 views
Prevent duplicate registrations - Castle Windsor
sorry if this has been asked before i've tried doing some google-ing and haven't found any matches so here goes....
I have a Castle Windsor container that I add my components to using the following ...
0
votes
0answers
17 views
NHibernate message handler Session provider with Windsor
In my application I have a mixed Session provider that must provide the same session to all components resolved by Windsor during a single message process.
I have a Func in my repository in order to ...
3
votes
1answer
65 views
Automocking the SUT
I have read Mark Seeman's article on auto-mocking and I'm now writing a re-usable windsor container based on that article.
My implementation of Mark's article (basically copied directly)
The main ...
0
votes
0answers
62 views
Equivalent of perwebrequest in Castle Windsor WCF integration
We are using Castle Windsor for the WCF Service(which handles JSON request/response). Also we are using Entity Framework in the Data Layer.
When we use PerWebRequest LifeStyle, it throws the ...
1
vote
2answers
49 views
Castle Windsor - Register components only once
I was wondering if there is some best practice to achive the functionality I need.
I have a web application that during startup, with reflection, scans certain assemblies (plugins) and registers ...
0
votes
1answer
31 views
Castle Windsor: unit test component lifecycle
I would like to write a non-regression test to validate that transient components are well released. Some are created by a direct injection in ctor, other by typed factories.
I thought that I could do ...
0
votes
1answer
36 views
Windsor TypedFactoryFacility, selecting a component based on argument type
I have the following typed factory:
public interface IWorkerFactory
{
IWorker Create(IJob job);
void Release(IWorker handler);
}
This factory creates workers for a given job. The jobs all ...
2
votes
1answer
115 views
Call MVC async action through Ajax, start task, send the ajax response before the task completes?
I have the following scenario:
I have an MVC Async Controller that has an upload action, which processes a csv file and saves the data to the database using nHibernate. This is called using
...
1
vote
1answer
42 views
Change ServiceOverride after component registration in Castle
I have two components registered for a service:
container.Register(
Component.For<IDataStorage>().Named("FirstChoice").ImplementedBy...
...
0
votes
1answer
33 views
Can I use the Castle Logging facility during registration phase?
I am using the Castle Windsor logging facility and it's working great. I have an installer which registers an interceptor plus a facility to hook up to events so that I can keep most of my code ...
0
votes
0answers
46 views
Defined a dictionary with windsor config
I'm failed to define a IDictionary<string,List<string>> in windsor xml file
my class (C#):
public class myService
{
public IDictionary<string, List<string>> ...
3
votes
3answers
98 views
C# Namespace conflicts
Say I'm working inside a namespace called, for example, Org.Company and that this namespace contains MyClass.
I'm also importing a nuget with a namespace called Company with a class named OtherClass.
...
0
votes
0answers
81 views
Castle Windsor - slow debugging
I have recently started working on an ASP.NET MVC project that uses Castle Windsor. The problem is, each time I try to debug the application, this part of code takes a couple of minutes to execute:
...
0
votes
1answer
89 views
Castle Windsor IoC doesn't inject log4net into my controller
I'm working out this(http://docs.castleproject.org/Windsor.Windsor-Tutorial-Part-Five-Adding-logging-support.ashx) IoC tutorial in Castle Windsor, I have passed all of the previous steps and as in ...
0
votes
1answer
74 views
Castle Windsor, Non-Fluent NHibernate, and a PersistenceFacility
Does anyone have an example of the PersistenceFacility using non-fluent NHibernate (xml mappings in NHibernate) with Castle Windsor and code as configuration (no XML for Castle Windsor)? (ASP.NET MVC)
...
2
votes
1answer
57 views
Castle Windsor Resolve at run time
I have been trying to fix this issue for quite a while and I am still none the wiser. I have got the following method:
public IResult Parse(string[] args)
{
var argumentOption = new ...
0
votes
1answer
24 views
IWcfPolicy - add message headers on the fly
Is it somehow possible to add header info (or querystrings) to a wcf request on the fly?
I've been messing around a bit with the IWcfPolicy like this:
var xmlObjectSerializer = new ...
0
votes
1answer
119 views
Castle Windsor WCF Facility doesn't work in release mode when code optimizations or full-pdb are disabled
I develop a project that uses Castle Windsor WCF Integration Facility as DDD architecture. There are a single container project, single domain project, several implementation projects and an ...
1
vote
2answers
61 views
Castle.Windsor - understanding transient lifestyle
New to Castle.Windsor and just wanted to check something.
I've been reading about transient lifestyles and "releasing what you resolve" - I've created a Resource provider for my ASP.NET MVC3 ...
1
vote
1answer
89 views
How to use ExtendedLog4netLogger.cs to set logfile path for appender at runtime?
I am trying to figure out how to use the ExtendedLog4NetLogger.cs
to change the log file path dynamically at runtime or using the LoggingFacility?
This should be something similar to using log4net ...
0
votes
1answer
47 views
If there are two registrations for same component with different bound components, they should receive different instances?
I'm trying to understand how works bound lifestyle in Castle.Windsor and I think I don't get it yet :)
So in test below, I'm testing following assumptions:
1) if component is bound to something, ...
0
votes
0answers
56 views
UnitOfWork lifespan in WPF with an IoC Container
My basic setup is a lot like this; http://visualstudiomagazine.com/articles/2011/10/01/wpf-and-inversion-of-control.aspx
An MVVM setup in WPF. I'm injecting a UnitOfWork and a RepositoryFactory into ...
0
votes
3answers
53 views
Castle Winsdor automatic resolving generic interfaces work incorrectly
I use Castle Winsdor as DI resolving tool.
I map entites code:
container.RegisterServices(
Assembly.GetAssembly(typeof(GridEntityService<,>)));
I have Interface with two generics:
...
4
votes
2answers
62 views
programatically change a dependency in Castle Windsor
I have a class that calls out to an internet service to get some data:
public class MarketingService
{
private IDataProvider _provider;
public MarketingService(IDataProvider provider)
{
...
1
vote
1answer
138 views
Windsor 'Scope cache was already disposed' within Envers custom Revision Listener
Update: I think is down to a Windsor configuration, does any one have any idea as to what I have not configured correctly with Windsor?
I am currently using Envers within a C# WebApi project. ...
0
votes
2answers
77 views
Replace Obsolete AllTypes class in Castle Windsor
I have this code from old castle
IoC.Container.Register( AllTypes.FromAssemblyNamed( a ).Pick().WithService.FirstInterface().Configure( o => o.LifeStyle.PerWebRequest ) );
when I upgrade to ...
1
vote
1answer
61 views
List and resolve implementations of interface [Windsor Castle]
Since Autofac is not working on Mono I'm trying to switch to Windsor IoC framework.
I want to search dll's for implementations of my interface IDataLoader and resolve all of them to instances.
here ...
0
votes
2answers
51 views
DI Creational pattern
Been struggling with this for quite a while now, so I'm starting to think I have created an anti-pattern. Nevertheless, here goes;
//Register self
...
1
vote
2answers
72 views
Adding service initialization method when using Castle Windsor IoC container
If my service have some initialization code, I know two options:
Implement ISupportInitialize.
Pro: Only depend on .NET native interface.
Con: I normally only use BeginInit(), so there's always ...
0
votes
0answers
28 views
Intercept only service, not implementation in Windsor
I have this code:
container.Register(
Component.For(typeof(MyServiceInterceptor<>)),
Component.For<IMyService<string>, MyServiceImpl<string>>()
...
0
votes
1answer
240 views
IoC: Castle Windsor and WebAPI
I have an MVC4 site using Castle Windsor that I want to add some WebAPI calls to, so I start digging around a little bit on the interwebs.
Now I don't know the ins and outs of IoC; I followed a ...
0
votes
0answers
48 views
IKernel.RemoveComponent removed from castle windsor newer versions
I was keen to use this method IKernel.RemoveComponent so that I can dynamically update my service instance, and sadly enough the newer versions of Castle Windsor do not support this, what I was ...
2
votes
3answers
255 views
What is the difference between using the Service Locator anti-pattern and using the Castle Windsor container?"
Recently, I have been trying to understand what is the difference between using the Service Locator "anti-pattern" and using the Castle Windsor container. I have found some info here and there on the ...


