tags:

views:

52

answers:

0

Hi all

I am planning to use Unity for my WCF Services. The client application talks to WCF Services.

The WCF services talks to few other modules [ ModuleA, ModuleB, ModuleC...] All the modules implement IModuleInitializer like WCSF modules do. They have a RegisterModuleServices method

I was able to integrate Unity with WCF. In my core or WCF app, i registered the default types, like say and so on...

However there are few modules that donot use the DefaultAuth. I want those modules to use ModuleB_AuthService which implements IAuthService

How do i achieve this? Or in another words, I want few modules to ovveride the default behavior [ONLY FOR THAT MODULE]. I tried setting attributes and stuff and didnt work.

Help appreciated