Zend Framework  1.12
Public Member Functions | Protected Attributes | List of all members
Zend_XmlRpc_Server_System Class Reference

Public Member Functions

 __construct (Zend_XmlRpc_Server $server)
 Constructor.
 
 listMethods ()
 List all available XMLRPC methods.
 
 methodHelp ($method)
 Display help message for an XMLRPC method.
 
 methodSignature ($method)
 Return a method signature.
 
 multicall ($methods)
 Multicall - boxcar feature of XML-RPC for calling multiple methods in a single request.
 

Protected Attributes

 $_server
 

Constructor & Destructor Documentation

__construct ( Zend_XmlRpc_Server  $server)

Constructor.

Parameters
Zend_XmlRpc_Server$server
Returns
void

Member Function Documentation

listMethods ( )

List all available XMLRPC methods.

Returns an array of methods.

Returns
array
methodHelp (   $method)

Display help message for an XMLRPC method.

Parameters
string$method
Returns
string
methodSignature (   $method)

Return a method signature.

Parameters
string$method
Returns
array
multicall (   $methods)

Multicall - boxcar feature of XML-RPC for calling multiple methods in a single request.

Expects a an array of structs representing method calls, each element having the keys:

  • methodName
  • params

Returns an array of responses, one for each method called, with the value returned by the method. If an error occurs for a given method, returns a struct with a fault response.

See Also
http://www.xmlrpc.com/discuss/msgReader$1208
Parameters
array$methods
Returns
array

Member Data Documentation

$_server
protected