I have following ServiceBehaviour on my service:
<ServiceBehavior(IncludeExceptionDetailInFaults:=True), _
AspNetCompatibilityRequirements(RequirementsMode:=Activation.AspNetCompatibilityRequirementsMode.Required)> _
When i add a Sub/void method to my service all my contracts are generated correctly. But when i change my OperationContract to IsOneWay:
<OperationContract(IsOneWay:=True)> _
In this case if i add my service all the other Functions are generated as void/sub methods. And there seem to be even more issues with generated WCF proxy.
Am i missing something here?