It seems that current behaviour of Castle Windsor (2.0) method


container.ResolveAll(Type type)

is to ignore all services that cannot be resolved due to missing dependencies. What is recommened way to resolve all services + throwing exception when any of services cannot be resolved?

link|improve this question
This is expected behavior, and that's what you'd want most of the time, so this is not going to change. – Krzysztof Koźmic Nov 16 '09 at 13:28
@Krzysztof I know but I also wanted this some times. Making it optional wouldn't hurt... – Mauricio Scheffer Nov 16 '09 at 16:21
I see you found yourself quite a nice workaround. And if you want this, because you want to get 'notified' when you mis-wired your container, check that in unit tests - weblogs.asp.net/bsimser/archive/2008/06/27/… – Krzysztof Koźmic Nov 16 '09 at 20:03
what would be a reasonable scenario when you'd really want that? I can't think of any – Krzysztof Koźmic Nov 16 '09 at 20:04
1  
I was experimentally porting an application from some other DI container to castle windsor, and resolveall did not return all services (due to miswired container). Once I found out how ResolveAll actually works, I had no problem fixing it...but I still don't understand why is it more appropriate for ResolveAll to ignore misconfigured services than to throw exception? In what scenario do you resolve all prior to registering all dependancies? – user211140 Nov 17 '09 at 8:53
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

AFAIK there is no built-in way to do that and I've been thinking about implementing an option to throw instead of ignoring invalid components. However, this has some consequences that need to be thought through.

In the meantime, here's a hack. Let me know if it works for you.

link|improve this answer
Thank you, just what I was looking for. I hoped it would be integrated in windsor, so thanks for clearing that up. – user211140 Nov 17 '09 at 8:56
feedback

Your Answer

 
or
required, but never shown