More WCF woes... :)
All my workflows implement the same 3 methods. After a lot of copy and paste, I decided to make them inherit from the same interface:
<
Why don't you specify a name for your contract in the ServiceContract attribute:
[
ServiceContract
(
Namespace = "http://schema.company.com/messages/",
Name="MyBasicContract"
)
]
If you don't explicitlly specify a name, it will default to the qualified name of your interface in "that weird syntax that .NET uses".