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

Component.For<ServicesInterceptor>().Interceptors

but not sure how to use it. Can someone help me out? This example seemed a little complex.

link|improve this question

73% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You do it in two steps:

  • You need to register the interceptor as a service in the container:
container.Register(Component.For<MyInterceptor>());
  • You register the component you want to intercept. Using Interceptors method on fluent API you specify which of the registered interceptors (by key, or type) you want to intercept this component with:
container.Register(Component.For<IFoo>().ImplementedBy<Foo>()
   .Interceptors<MyInterceptor>());

See the documentation for more details.

link|improve this answer
@Krzysztof My interceptor is designed to pick all methods and check for a custom attribute.which means that the class might not implement an interface. Essentially any method that has transaction attribute goes inside a transaction. So how do i add an interceptor to intercept all methods in the app domain? Your example if for IFoo – Quintin Par Apr 5 '10 at 3:25
DynamicProxy is able to intercept calls to methods on classes, but the requirement is that these methods must be virtual, so as long as your components satisfy that requirement you're good to go – Krzysztof Koźmic Apr 5 '10 at 7:25
feedback

First register the interceptor:

container.Register(Component.For<IDbInterceptor>().ImplementedBy<DbInterceptor>().Named("transactionInterceptor"));

Then register the objecting being intercepted:

container.Register(Component.For<IMyService>().ImplementedBy<MyService>().Named("MyService"). Interceptors(new InterceptorReference("transactionInterceptor")).Anywhere);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.