Web Service
A web service is a server-side program that provides functionality that can be invoked and used at the programming level (interoperable architecture).
<!-- Content-Type: text/xml -->
<methodCall>
<methodName>examples.getValue</methodName>
<params>
<param>
<value>RandomValue</value>
</param>
</params>
</methodCall>// Content-Type: application/json-rpc
{"method": "sum", "params": {"a":3, "b":4}, "id":0}<!--
Content-Type: text/xml; charset = utf-8
[ SOAPAction: "OperationName" ]
-->
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2003/05/soap-envelope/"
soap:encodingStyle="http://www.w3.org/2003/05/soap-encoding">
<soap:Header> ... </soap:Header>
<soap:Body>
...
<soap:Fault> ... </soap:Fault>
</soap:Body>
</soap:Envelope>Last updated