Tagged Questions
Castle Windsor is an Inversion of Control container for .NET and Silverlight. Current version is 3.0, released in December 2011. It has a comprehensive documentation that can answer most of your questions so it's always worthwhile to RTFM first. Also check out its group on Google groups, which is where most of Castle experts hang out.
37
votes
3answers
3k views
What is Castle Windsor, and why should I care?
I'm a long-time Windows developer, having cut my teeth on win32 and early COM. I've been working with .Net since 2001, so I'm pretty fluent in C# and the CLR. I'd never heard of Castle Windsor until ...
24
votes
2answers
5k views
Comparing Castle Windsor, Unity and StructureMap
In a follow up to Krzysztof’s statement that Windsor does a lot more than other IoC’s, I wanted to understand how these IoC’s stack up against each other and the benefits/additional facilities that ...
24
votes
6answers
3k views
Castle Windsor Are There Any Downsides?
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 ...
22
votes
1answer
723 views
Why not use an IoC container to resolve dependencies for entities/business objects?
I understand the concept behind DI, but I'm just learning what different IoC containers can do. It seems that most people advocate using IoC containers to wire up stateless services, but what about ...
22
votes
5answers
3k views
Usage of IoC Containers; specifically Windsor
I think the answer to this question is so obivous that noone has bothered writing about this, but its late and I really can't get my head around this.
I've been reading into IoC containers (Windsor ...
22
votes
2answers
5k views
How to use Castle Windsor with ASP.Net web forms?
I am trying to wire up dependency injection with Windsor to standard asp.net web forms. I think I have achieved this using a HttpModule and a CustomAttribute (code shown below), although the solution ...
20
votes
4answers
4k views
Why does Castle Windsor hold onto transient objects?
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. ...
19
votes
9answers
3k views
Which Dependency Injection Tool Should I Use?
I am thinking about using Microsoft Unity for my Dependency Injection tool in our User Interface.
Our Middle Tier already uses Castle Windsor, but I am thinking I should stick with Microsoft.
Does ...
18
votes
3answers
4k views
Castle Windsor Dependency Resolver for MVC 3
Since the IoC/DI implementation in MVC 3 is most likely in its final form in the RC, I'm looking for an updated implementation of the DependencyResolver, IControllerActivator and IViewPageActivator ...
18
votes
1answer
2k views
Design - Where should objects be registered when using Windsor
I will have the following components in my application
DataAccess
DataAccess.Test
Business
Business.Test
Application
I was hoping to use Castle Windsor as IoC to glue the layers together but I am ...
11
votes
4answers
421 views
Are we using IoC effectively?
So my company uses Castle Windsor IoC container, but in a way that feels "off":
All the data types are registered in code, not the config file.
All data types are hard-coded to use one interface ...
11
votes
7answers
2k views
IoC, Where do you put the container?
I'm using castle windsor for a pet-project I'm working on. I'm starting to notice that I need to call the IoC container in different places in my code to create new objects. This dependency on the ...
10
votes
2answers
2k views
Castle Windsor or Spring.NET - advantages and disadvantages
Yesterday I was reading some articles in this site while I stumbled on an article about this two new IoC tools. Which one should I learn first? Is there some specification about which one should be ...
10
votes
6answers
2k views
Problem with Windsor Castle with IIS7
I am using windsor DI framework in one of my MVC project. The project works fine when I tried to run from Visual Studio 2008.
But when i tried to run the project creating an application in IIS7 then ...
9
votes
3answers
579 views
How can I use a string argument to case a namespace or type?
I need to get some JSON output in a .NET 2.0 C# script. The goal is to use one method to output all the JSON feeds I need. All the models have the same id and name properties so I have about 15 ...
9
votes
1answer
341 views
Avoiding Service Locator Antipattern with legacy app not designed for IOC
I have read often that Service Locators in IOC are an anti-pattern.
Last year we introduced IOC (Ninject specifically) to our application at work. The app is legacy, it's very big and it's ...
9
votes
3answers
1k views
Inject App Settings using Windsor
How can I inject the value of an appSettings entry (from app.config or web.config) into a service using the Windsor container? If I wanted to inject the value of a Windsor property into a service, I ...
8
votes
2answers
1k views
Implementing UnitOfWork with Castle.Windsor
Simple question.
How do I use UnitOfWork with Castle.Windsor, nHibernate, and ASP.NET MVC?
Now for the extended details. In my quest to understand the UnitOfWork pattern, I'm having difficulty ...
8
votes
2answers
1k views
How do I use Windsor to inject dependencies into ActionFilterAttributes
Having seen how NInject can do it and AutoFac can do it I'm trying to figure out how to inject dependencies into MVC ActionFilters using Castle Windsor
At the moment I'm using an ugly static IoC ...
8
votes
3answers
687 views
Caching in the ASP.NET MVC Framework
I am fairly new at using the ASP.NET MVC framework and was hoping that I could find some help about best-practises when caching various parts of my MVC web application. I know that stack overflow ...
8
votes
1answer
970 views
What are “ForwardedTypes” in the context of Castle Windsor component registration?
As the subject says, really! What do they do?
8
votes
4answers
1k views
Windsor Container: How to specify a public property should not be filled by the container?
When Instantiating a class, Windsor by default treats all public properties of the class as optional dependencies and tries to satisfy them. In my case, this creates a rather complicated circular ...
8
votes
3answers
982 views
Where can I find an .xsd file to provide intellisense for Castle Windsor?
I'm looking for an .xsd schema file to drop into my Visual Studio directory to provide intellisense for the xml configuration file for the Castle Windsor IoC container. I've looked in the downloaded ...
7
votes
1answer
656 views
Inject ASP.NET MVC Controller property into service layer dependency?
I am using an approach similar to the one in this ASP.NET MVC tutorial where you pass a wrapper around a controller's ModelState collection into a validation class so that the controller can access ...
7
votes
3answers
3k views
Why is my Castle Windsor controller factory's GetControllerInstance() being called with a null value?
I am using Castle Windsor to manage controller instances (among other things). My controller factory looks like this:
public class WindsorControllerFactory : DefaultControllerFactory
{
...
7
votes
2answers
426 views
Help getting DI/IoC in house
I am trying to introduce DI/IoC programming methodology into our development group, but one of the developer asked the following question:
Why do we need it? Is there any concrete example that can ...
7
votes
1answer
3k views
How to integrate IoC Membership provider with ASP.NET MVC
I have a custom membership/roles provider that I use in my MVC controllers that I also want to have accessible to ASP.NET MVC, so I can use AuthorizationFilters, etc. Since so many people have ...
7
votes
1answer
3k views
Inject a MembershipProvider into ASP.Net MVC AccountController
Asp.Net MVC 1.0 project templates include an AccountController class, which supports constructor injection:
public AccountController(IFormsAuthentication formsAuth,
IMembershipService service)
{
...
7
votes
3answers
2k views
Resolving classes without registering them using Castle Windsor
Take the following useless program:
class Program
{
static void Main(string[] args)
{
IUnityContainer unityContainer = new UnityContainer();
IWindsorContainer windsorContainer ...
7
votes
1answer
753 views
Does Castle-Windsor support ForwardedTypes via XML configuration
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?
...
7
votes
2answers
1k views
Applying AOP
I've been using some basic AOP style solutions for cross-cutting concerns like security, logging, validation, etc. My solution has envolved around Castle Windsor and DynamicProxy. I've gone down ...
6
votes
1answer
109 views
Can Windsor cooperate with another IoC container?
In the core of our application, we use Castle Windsor to manage our dependencies. We'll be loading plugins from third parties which may be using their own IoC containers. We'd like them to be able to ...
6
votes
2answers
587 views
Castle Windsor strange behaviour wth property injection and factory method
I am using Castle Windsor 2.5.1 in an ASP.NET MVC project and using property injection to create an object which I expect to always be available on a base controller class. I am using a factory to ...
6
votes
3answers
1k views
Where can I download the Castle Windsor WcfIntegration Facilities dll?
I would like to integrate Castle Windsor into a WCF project and have read that you can hook it up using the WcfIntegration facility but I am unable to find where to download the dll.
Can anyone help? ...
6
votes
3answers
565 views
Which IOC runs in medium trust
Hi I am trying to get a website running with Mosso that has Castle Windsor as my IOC, however I am getting the following error.
[SecurityException: That assembly does not allow partially trusted ...
6
votes
1answer
862 views
Castle Windsor can't inject an array of interface types
I have a class that takes an array of interfaces in the constructor:
public class Foo<T1, T2> : IFoo<T1, T2>
{
public Foo(IBar[] bars)
{
...
}
}
My container ...
6
votes
2answers
727 views
Specifying instance for registration of a component with Castle Windsor
I have what is probably a simple question here about Castle Windsor, which I haven't been using for very long. I'm trying to register a service with a specific instance that will be the singleton ...
6
votes
1answer
4k views
Castle Windsor passing constructor parameters
I have an IAddress class with a few properties. I then have a concrete type that implements this interface. This concrete type has a couple of different constructors I could use. How can I pass ...
6
votes
5answers
2k views
How to overwrite a component with castle windsor?
I want to redefine an (default) implementation in a given windsor-container. Is that what OverWrite is for? Doesn't work, though.
container.Register(
...
6
votes
4answers
2k views
Castle Windsor to Unity - can you auto-configure in Unity the same way you can in CW?
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 ...
6
votes
1answer
689 views
Castle Windsor: How to programatically pass a list parameter to the container?
Is it possible to pass a list constructor parameter when resolving a type? I want to use a programmatic configuration if possible. I've been playing around with the Parameters method as shown below, ...
6
votes
5answers
2k views
ASP.NET MVC Beta 1: DefaultModelBinder wrongly persists parameter and validation state between unrelated requests
When I use the default model binding to bind form parameters to a complex object which is a parameter to an action, the framework remembers the values passed to the first request, meaning that any ...
6
votes
5answers
3k views
Windsor Interceptors AOP & Caching
I'm considering using Castle Windsor's Interceptors to cache data for helping scale an asp.net site.
Does anyone have any thoughts/experience with doing this?
Minor clarification:
My intention was ...
6
votes
3answers
3k views
Windsor Container: How to force dispose of an object?
I have an object that implements IDisposable that is registered with the Windsor Container and I would like to dispose of it so it's Dispose method is called and next time Resolve is called it fetches ...
5
votes
1answer
80 views
Castle Windsor: is there a way of validating registration without a resolve call?
My current understanding of Castle Windsor registration is that one can only validate registration by calling Resolve on a root component. But since windsor's component model knows each component's ...
5
votes
1answer
129 views
DynamicProxy Generation Speed
I'm trying to troubleshoot some startup time concerns. After doing some profiling, I've found the main culprit is ClassProxyGenerator.GenerateCode. This takes 400-600ms per type the first time. So if ...
5
votes
3answers
101 views
Is there a simple way to register static closures with Castle Windsor?
I've been experimenting with using named delegates instead of single-method interfaces. This has some advantages for code size, as we can go from (some linebreaks removed so as not to overstate the ...
5
votes
3answers
192 views
Using Windsor to automatically subscribe to event aggregator with custom facility
Reading this blog post it mentions you can get your DI container to automatically subscribe to events if it implements IHandle<>. That is exactly what I'm trying to accomplish.
Here is what I ...
5
votes
2answers
119 views
How to inject proper dependency based on constructor parameter name
I have this interface that is being used by a handful of concrete types, such as EmailFormatter, TextMessageFormatter etc.
public interface IFormatter<T>
{
T Format(CompletedItem ...
5
votes
2answers
427 views
How do you use Castle Windsor - Fluent Interface to register a generic interfaces?
Castle Windsor just came out with a Fluent interface for registering components as an alternative to using XML in a config file. How do I use this Fluent interface to register a Generic interface?
To ...