In my case I got this error because the service name field did not actually match the namespace of the class actually implementing the operation contract in app.config file.
<services>
<service name="WCFHelloWorld.MySyncService" behaviorConfiguration="WCFHelloWorld.Service1Behavior">
.
.
.
</services>
<services>
<service name="WCFHelloWorld.MySyncService" behaviorConfiguration="WCFHelloWorld.Service1Behavior">
.
.
.
</services>
0 comments:
Post a Comment