Top "Operationcontract" questions

WCF OperationContract

What is a WCF OperationContract? I dont really understand what it does

wcf operationcontract
How to specify a parameter of an OperationContract as required

I wonder how I can specify a parameter of an OperationContract method in WCF as required so that the generated …

c# wcf wsdl operationcontract
WCF OperationContract - What's the point of Action and ReplyAction?

[ServiceContract(Namespace = "http://schemas.mycompany.com/", Name = "MyService")] public interface IMyService { [OperationContract(Name = "MyOperation") OperationResponse MyOperation(OperationRequest request); } In this …

wcf soap action reply operationcontract
WCF service method unavailable in WCF Test Client because it uses type

I am trying to use the WCF Test Client to test a WCF service I have built. The service has …

c# .net wcf wcftestclient operationcontract
WCF OperationContract - which generic collection type should I expose?

I have a WCF web service that has a method that returns a generic collection. Now, my question is: Should …

c# wcf collections operationcontract
WCF contract changes that affect clients

I was curious if someone could outline which types of WCF contract (interface) changes on the server side would break …

wcf datacontract servicecontract operationcontract
How To Use Interface as DataContract in WCF

I need invoke webservice operations using standard wsdl, but data objects must be different in client and in the server. …

c# wcf interface datacontract operationcontract
WCF: is there an attribute to make parameters in the OperationContract required?

I use [DataMember(IsRequired=true)] to make the DataContract properties required. There doesn't seem to be some IsRequired for the …

asp.net wcf soapui datamember operationcontract
WCF Post with Query String

I am currently developing a Windows Service hosted WCF service. One of the methods has a URI which is set …

.net wcf operationcontract webinvoke