SOAP Web Service Tutorials - Herong's Tutorial Examples - v5.13, by Herong Yang
Using SOAP Messages to Invoke RPC
This section provides some examples of using SOAP messages to invoke RPC.
Invocation of more complicated remote procedures requires SOAP messages. Here is an example.
Example 3 - A user wants to update prices of a list of part numbers in an inventory system with the following RPC:
updatePrice(List=ArrayOfStructures)
The SOAP message to invoke the above RPC could look like:
<?xml version="1.0"?> <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"> <env:Body env:encodingStyle="http://www.w3.org/2003/05/soap-encoding" xmlns:enc="http://www.w3.org/2003/05/soap-encoding"> <rpc:updatePrice enc:nodeType="struct" xmlns:rpc="https://www.herongyang.com"> <rpc:List enc:arraySize="2"> <rpc:item> <rpc:PartNumber>123</rpc:PartNumber> <rpc:Price>99.00</rpc:Price> </rpc:item> <rpc:item> <rpc:PartNumber>321</rpc:PartNumber> <rpc:Price>199.00</rpc:Price> </rpc:item> </rpc:List> </rpc:updatePrice> </env:Body> </env:Envelope>
Table of Contents
Introduction to SOAP (Simple Object Access Protocol)
SOAP Message Transmission and Processing
Using Web Methods to Invoke RPC
►Using SOAP Messages to Invoke RPC
SOAP MEP (Message Exchange Patterns)
PHP SOAP Extension Client Programs
PHP SOAP Extension Server Programs
PHP SOAP Web Service Example - getTemp
Perl SOAP::Lite - SOAP Server-Client Communication Module
Perl Socket Test Program for HTTP and SOAP
Perl SOAP::Lite for NumberToWords SOAP 1.1 Web Service
Perl SOAP::Lite for SOAP 1.2 Web Services
Java Socket and HttpURLConnection for SOAP
SAAJ - SOAP with Attachments API for Java
SoapUI - SOAP Web Service Testing Tool
WS-Security - SOAP Message Security Extension
WS-Security X.509 Certificate Token
Perl SOAP::Lite for GetSpeech SOAP 1.1 Web Service
Perl SOAP::Lite 0.710 for SOAP 1.2 Web Services
Perl SOAP::Lite 0.710 for WSDL