Why does the following not intercept calls to IBusinessService with the LogAspect?

container.Register(AllTypes.Of<IBusinessService>()
    .FromAssembly(Assembly.GetExecutingAssembly())
    .ConfigureFor<BusinessService>(
        c => c.Named(typeof(BusinessService).Name)
            .Interceptors(InterceptorReference.ForType<LogAspect>()).Anywhere));

If I register each implementation of IBusinessService using the Component.For syntax then it works.

link|improve this question

50% accept rate
Do you mean to register this as Component.For<IBusinessService>().ImplementedBy<BusinessService>() or Component.For<BusinessService>() ? – Mauricio Scheffer Mar 20 '09 at 1:04
Like Component.For<IBusinessService>().ImplementedBy<BusinessService>(), but there are multiple implementations of BusinessService. I ended up registering each on on it's own. – Candland Apr 2 '09 at 20:59
I think this might be a duplicate of my issue: stackoverflow.com/questions/1188957/… – jonnii Jul 27 '09 at 20:05
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.