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).

Information.

Remote Procedure Call (RPC) protocol that uses XML (usually over HTTP) to invoke functionality. Composed of <methodCall>, <methodName> and <params>.

<!-- Content-Type: text/xml -->

<methodCall>
    <methodName>examples.getValue</methodName>
    <params>
       <param>
 	  <value>RandomValue</value>
       </param>
    </params>
 </methodCall>

Use Wsdler extension of BurpSuite.

Last updated