vote up 0 vote down star

Is there some uniform way I can implement behavior that occurs around a set of WCF service calls? I'm looking for a simple way to handle cross-cutting behavior like logging, initialization, error handling, authorization etc. With ASP.NET a lot of this is easy to implement as an HTTPModule.

Any helpful suggestions?

flag

1 Answer

vote up 2 vote down check

There are a whole bunch of extensibility points in WCF you can use for stuff like this. They include:

Additionally, you can create custom ServiceHost classes to use either directly or through ServiceHostFactory, and then there's the entire channel stack model which is pretty extensible (if a bit complex at times).

link|flag
Thanks for a bunch of good options! It's going to take me a while to make sense of which approach works best in different scenarios and how to wire it all up. – Eric Nicholson Sep 25 at 20:14

Your Answer

Get an OpenID
or

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