Tagged Questions

1
vote
0answers
2k views

Castle.Windsor Register AllTypes With An Interceptor

Why does the following not intercept calls to IBusinessService with the LogAspect? container.Register(AllTypes.Of<IBusinessService>() .FromAssembly(Assembly.GetExecutingAssembly()) ...
0
votes
2answers
199 views

DynamicProxy2: CreateClassProxyWithTarget + IInterceptor

If I've missed this in another question I apologize; I looked for a good while before deciding I had a unique question... I want to use DynamicProxy2 to provide interception for a WPF application's ...
0
votes
2answers
561 views

Register an Interceptor with Castle Fluent Interface

I am trying to implement nhibernate transaction handling through Interceptors and couldn’t figure out how to register the interface through fluent mechanism. I see a ...
0
votes
1answer
2k views

Castle Interceptors With Fluent Interface

I'm trying to get an interceptor I've written to work, but for some reason it doesn't seem to be instantiating the interceptor when I request my components. I'm doing something like this (forgive me ...