Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi have the following component registered into Castle Windsor:

public class CommandDispatcher : IServiceCommandDispatcher
{
    private readonly IWindsorContainer container;

    public CommandDispatcher(IWindsorContainer container)
    {
        this.container = container;
    }

    #region IServiceCommandDispatcher Members

    public void Dispatch<TCommand>(TCommand command) where TCommand : IServiceCommand
    {
        var handler = container.Resolve<IServiceCommandHandler<TCommand>>();
        handler.Handle(command);
    }

    #endregion
}

And the dispatcher is registered in the following way:

Component
   .For<IServiceCommandDispatcher>()
   .ImplementedBy<CommandDispatcher>(),

But the field container is null when I resolve an instance of the dispatcher. What should I do in order to pass the container to the resolved children items?

share|improve this question
I found this: container.Register(Component.For<IWindsorContainer>().Instance(contaienr)); to work properly. – Raffaeu Jan 31 at 9:47
Windsor doesn't do it for a reason. – Krzysztof Koźmic Jan 31 at 10:14
1  
Well, I don't think your answer will be helpful to anybody ... What is the reason? Should I inject 100 different command handlers? What's your solution? – Raffaeu Jan 31 at 11:00
Take a step back and do some reading about philosophy behind containeres, what they're actually for. FAQ might be not a bad place to start: docs.castleproject.org/… – Krzysztof Koźmic Jan 31 at 21:21
1  
Usually (but not always), calling container.Resolve directly is a code smell. It means there's probably a better way to do what you want without having to use the container directly. – Patrick Steele Jan 31 at 21:56
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.