An XML-RPC client implementation
Located in /Zend/XmlRpc/Client.php (line 52)
Holding all the method signatures, the array has the methods name as keys and the signature as the value
The signature is an array of 2 keys: 'return_value' - string, hold the return value of the method 'params' - array of strings, hold the parameters for the method (can be an empty array)
This array is created automatically when calling the __getMethodsXml() or __setMethodsXml() methods
Array of cached namespace decorators, array of Zend_XmlRpc_Client_NamespaceDecorator objects
The response from an XML-RPC method call, held in a Zend_XmlRpc_Value object
The XML-RPC service server full address
Class constructor - create a new XML-RPC client to a remote server
Generates an XML string analogous to SOAP's WSDL representing all the methods signatures Signature is the method return value and method parameters This function also set the _methodSignatures data memeber with the method signatures details (in an array)
Build the XML body of an XML-RPC request
Convert an array of PHP variables into XML-RPC native types represented by Zend_XmlRpc_Value objects If method name is given, try to use the _methodSignatures data member for type hinting, if not, auto convert the PHP variable types into XML-RPC types
Return the XML-RPC types of the necessary parameters for a method in the service Get the types from the _methodSignatures data member {@see __getMethodsXml() for more information}
Call system.methodSignature() for all the given methods
Use system.methodSignature() to get all the given methods signatures using the system.multicall() method
Attempt to get the method signatures in one request via system.multicall(). This is a boxcar feature of XML-RPC and is found on fewer servers, however can significantly improve performance if present. For more information on system.multicall(), see: http://www.xmlrpc.com/discuss/msgReader$1208
Parse the response from a XML-RPC method call, hold the response as a Zend_XmlRpc_Value object The response parameter must be a valid XML string
Send a XML-RPC request to the service (for a specific method)
Using the magic __call function to call methods directly by method name
Undefined properties are assumed to be XML-RPC namespaces and return a decorator to enable object chains.
Generates an XML string containing the signatures for every method on the remote server by calling system.listMethods() and then calling system.methodSignature() for each method. This output generated is analogous to SOAP's WSDL file.
The response received from the method call, response can be retrieved in 3 formats:
Consumes an XML string generated by __getMethodsXml() and uses it for type hinting. When a remote method is called, either trapped by __call() or called with __xmlRpcCall(),
Call a specific method (with or without parameters) from the XML-RPC service
Documentation generated on Tue, 18 Apr 2006 11:54:40 -0700 by phpDocumentor 1.3.0RC3