I've found plenty of places where people point out that a ServiceBehavior should be an attribute of the service class and not the contract, and this definitely seems to be the case. Why is this?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Because it deals with implementation detail of the service and is not part of the contract.

Behaviours such as session, re-entry,... all deal with the implementation so that you could have the same contract (interface) but different implementations exposed at different endpoints.

link|improve this answer
alright, I gotcha. thank you – djmc Nov 10 '10 at 20:25
feedback

Your Answer

 
or
required, but never shown

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