SOAP
structure
with each in or in-out parameter modeled
as a field in that structure.String check(String paramA, String paramB);will use the SOAP envelope
<s:Envelope xmlns:s="..."> <s:Body> <check xmlns=".." s:encodingStyle="http://www.w3.org/2001/06/soap-encoding"> <paramA xsi:type="string">abs123</paramA> <paramB xsi:type="string"> Bob's store </paramB> </check> </s:Body> </s:Envelope>
24 of 29