This seems like a simple question, but I could not find the answer online through many Google searches. I have a C # web service, and when I visit its ASMX page in a browser, for a particular method, it always has the following:
βThe following is an example of a SOA 1.1 request and response. The placeholders shown should be replaced with actual values.
Similarly for SOAP 1.2 and HTTP POST. What I want to know is how I replace the placeholders shown, for example:
<myParameter>string</myParameter>
Where "string" is a placeholder. And in response:
<xsd:schema>schema</xsd:schema>xml
Where "schema" and "xml" are placeholders. I am using another web service in which these placeholders are filled with examples of parameter values ββand responses, and I would also like to define such examples for my own web methods. I was able to describe the whole method as follows:
[WebMethod(Description="Does awesome things.")]
But I did not find such a thing for the individual parameters of the web method.
c # web-services documentation asmx
Sarah vessels
source share