XML-RPC API for http://localhost:8080/ See http://www.linuxdoc.org/HOWTO/XML-RPC-HOWTO/index.html for instructions on using XML-RPC with Perl, Python, Java, C, C++, PHP, etc. struct sample.getSumAndDifference (int, int) Calculate the sum and difference of two integers. array system.listMethods () Return an array of all available XML-RPC methods on this server. string system.methodHelp (string) Given the name of a method, return a help string. array system.methodSignature (string) Given the name of a method, return an array of legal signatures. Each signature is an array of strings. The first item of each signature is the return type, and any others items are parameter types. array system.multicall (array) Process an array of calls, and return an array of results. Calls should be structs of the form {'methodName': string, 'params': array}. Each result will either be a single-item array containg the result value, or a struct of the form {'faultCode': int, 'faultString': string}. This is useful when you need to make lots of small calls without lots of round trips.