Tagged Questions

2
votes
1answer
552 views

Intercept Properties With Castle Windsor IInterceptor

Does anyone have a suggestion on a better way to intercept a properties with Castle DynamicProxy? Specifcally, I need the PropertyInfo that I'm intercepting, but it's not directly on the IInvocation, ...
2
votes
2answers
231 views

Problem with Windsor Calls to “Genericized” Methods After Adding an Interceptor

I have an application that was working fine that uses Windsor for IoC. I want to log the method calls, parameters, and execution time of all calls made to components instantiated by Windsor, so I ...
1
vote
1answer
219 views

Castle.Core.InterceptorAttribute not injecting interceptor

Based on the documentation for Castle.Core.InterceptorAttribute, I am trying to make this simple test pass, and am having no luck: using NUnit.Framework; using Castle.DynamicProxy; using Castle.Core; ...
1
vote
1answer
573 views

Register custom NHibernate Interceptor via Windsor

I created a simple AuditInterceptor: EmptyInterceptor now I wonder how can I register this new interceptor with my application using Windsor?
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
1answer
215 views

Proxy is created, and interceptor is in the __interceptors array, but the interceptor is never called

This is the first time I've used interceptors with the fluent registration and I'm missing something. With the following registration, I can resolve an IProcessingStep, and it's a proxy class and the ...
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 ...