XML-RPC Service

You need to invoke this service using an XML-RPC Client.

The following methods are available :

system.listMethods

Types of arguments : string
Type of return : string
system.listMethods() => ['add', 'subtract', 'multiple']

Returns a list of the methods supported by the server.

system.methodHelp

Types of arguments : string, string
Type of return : string
system.methodHelp('add') => "Adds two integers together"

Returns a string containing documentation for the specified method.

system.methodSignature

Types of arguments : string, string
Type of return : string
Returns the signature details for a specified method

method
    The name of the XML-RPC method to get the details for

system.multicall

Types of arguments : string, string
Type of return : string
system.multicall([{'methodName': 'add', 'params': [2, 2]}, ...]) => [[4], ...]

Allows the caller to package multiple XML-RPC calls into a single
request.

See http://www.xmlrpc.com/discuss/msgReader$1208

xmlrpc_upload

Types of arguments : string, string, string, string, string, string, string, string
Type of return : string