Take for example a project with 10 services and 20 methods on each service.

All services inherit from a base services which has a security check. The first thing each method does is to make a call to the security check. This throws a security exception if there is a problem.

Question is: Do I need to specify a FaultContract on each method (OperationContract), or can I do it once in a central definition?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

No, you need to do it on each and every method - WCF is rather picky and requires explicit settings pretty much for everything (which really is a good thing in the end, I am convinced).

Marc

link|improve this answer
Surely you'd agree that it should be possible to implement cross-cutting concerns like security in an orthogonal manner. It seems odd to me that I can implement a nice ServiceAuthorizationManager in a decoupled manner, but then I have to go sprinkle my contracts with repetitive junk if I want to throw a custom security fault. – Kent Boogaart Apr 28 '10 at 12:42
I agree, I'm looking for a method to do the repetitive junk automatically, too. – Joel Sanderson May 7 '10 at 15:24
feedback

You can do it by creating a custom attribute.

Implement IContractBehavior and add the fault to each operation on the Validate method.

void IContractBehavior.Validate(ContractDescription contractDescription, ServiceEndpoint endpoint)
{
   foreach (OperationDescription od in contractDescription.Operations)
      od.Add(yourFault);
}
link|improve this answer
+1 Thanks, I will try this out on our next project – Shiraz Bhaiji Dec 2 '10 at 8:00
+1 This does help. This way 1 attribute can be applied at the ServiceContract interface level, instead of to each individual method in the interface. – rally25rs Jan 31 '11 at 14:38
feedback

Yes on each operation contract

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.