XML-RPC Service
You need to invoke this service using an XML-RPC Client. The following methods are available:
pingback.ping
Types of Arguments: string, string
Type of Return: string
Type of Return: string
No documentation available
system.listMethods
Types of Arguments: string
Type of Return: 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
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
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
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