Remote Procedure Calls with PEAR::XML-RPC - The Output
(Page 11 of 12 )
Our client script executes and transacts an XML-RPC exchange with our client server to generate the following output:
Function Call: getNameLength(George, Washington) Sent XML Message: <?xml version="1.0"?> <methodCall> <methodName>getNameLength</methodName> <params> <param> <value><string>George</string></value> </param> <param> <value><string>Washington</string></value> </param> </params> </methodCall>
Return Value: 16
Received XML Message: <methodResponse> <params> <param> <value><int>16</int></value> </param> </params> </methodResponse>
George Washington's name is 16 letters long. |
Next: Conclusion >>
More Miscellaneous Articles
More By bluephoenix