Shuvojit Halder

Shuvojit Halder

  • NA
  • 763
  • 43.1k

Restfull WCF service Problem

Feb 21 2018 8:04 AM
I have created a WCF restfull service and calling from postman from-data parma-their is problem.
 
can anyone help me how to call it and what will be service param.
 
here is my method 
[OperationContract]
[WebInvoke(
Method = "POST",
RequestFormat = WebMessageFormat.Xml,
ResponseFormat = WebMessageFormat.Xml,
UriTemplate = "/CustomerSave",
BodyStyle = WebMessageBodyStyle.WrappedResponse)]
string CustomerSave(CustomerDataContract parameter);
 I am calling from it this way.
 

Answers (6)