| | |
- system.listMethods()
- system.listMethods() => ['add', 'subtract', 'multiple']
Returns a list of the methods supported by the server.
- system.methodHelp(method_name)
- system.methodHelp('add') => "Adds two integers together"
Returns a string containing documentation for the specified method.
- system.methodSignature(method_name)
- system.methodSignature('add') => [double, int, int]
Returns a list describing the signiture of the method. In the
above example, the add method takes two integers as arguments
and returns a double result.
This server does NOT support system.methodSignature.
- system.multicall(call_list)
- 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
- validator1.arrayOfStructsTest(a)
- validator1.countTheEntities(s)
- validator1.easyStructTest(s)
- validator1.echoStructTest(s)
- validator1.manyTypesTest(num, bool, s, doub, dateTime, base64)
- validator1.moderateSizeArrayCheck(array)
- validator1.nestedStructTest(s)
- validator1.simpleStructReturnTest(number)
|