16 Nov
2008

Chain of Responsibility Using Castle Windsor and a First Experience With StructureMap – Part 2

In my previous post, I outlined an issue that I had with Castle Windsor for configuring multiple chains of responsibility. I want to have different ProcessConsumer classes that require a slightly different chain of processors: ProcessConsumer1 -> Processor1 -> Processor2 ProcessConsumer2 -> Processor3 ->? Processor1 -> Processor2 Solution with Castle Windsor For achieving this scenario […]

Read More
16 Nov
2008

Chain of Responsibility Using Castle Windsor and a First Experience With StructureMap – Part 1

A couple of months ago, I applied the Chain of Responsibility pattern for the very first time. I’ve never encountered a scenario before where applying this pattern would be a valid option. But now, after some refactoring, I somehow naturally ended up applying this rarely used design pattern. Lets dive into some code, shall we? […]

Read More