iservicebehaviors

EndPointDispatcher and Attributes set on the service or service contract

I am using WCF and IServiceBehaviors, and adding EndPointDispatchers. What I would like to check is that on the EndPointDispatcher is there any way of check to see which attributes have been set on the Service or Service Contract? The reason for doing this is that if a Service has an attribute then a new Inspector will be added if not...

Implementing IErrorHandler using class level Attributes in WCF

Had no luck with getting it working via config files, so decided to attempt to go the more robust route of doign it via class level attributes. If I can get this working it is clearly a great way of wrapping exceptions in Faults in the service layer withou trepeating lots of code. However the code in the attribute never seems to get run...