2 questions in one, but very much related. Is it possible with Castle Windsor to resolve a configuration entry such as -
We are using the NoTrackingReleasePolicy on the Windsor container due to the memory leaks that occur when we do not Release our components after usage. Now consider the following problem.
How can I use an IComponentActivator instance for a component, not just specifying a type. That is, instead of
I have a component that has a dependency on UrlHelper that I need to register using Castle Windsor. UrlHelper in turn has depdendencies on RequestContext (and RouteCollection).
Does anyone know how to configure WCF using Windsor on IIS 7.0? I\'m using the latest from WCF Windsor facility trunk and Windsor 2.1.1. The example on http://www.castleproject.org/container/facilitie
In googling I can\'t seem to find an example of intercepting event on a proxied type and it doesn\'t seem to be working for me. Is there a way I can do this (ie. use a开发者_如何学Cn IInterceptor when
How would I go about globally intercepting the creation/resolution of all instances by my container? I开发者_Go百科 know I can do this individually with OnCreated on a per-component basis, but I want
Does anyone have a suggestion on a better way to intercept a properties with Castle DynamicProxy? Specifically, I need the PropertyInfo that I\'m intercepting, but it\'s not directly on the IInvocat
Consider the following example: public interface ITask { void Execute(); } public class LoggingTaskRunner : ITask
I am building a set of class libraries that produce office open xml based reports and I am using a static Windsor IoC container.