- Publicity: Public Only All
system-procs.tcl
Standard reserved methods http://xmlrpc.usefulinc.com/doc/reserved.html
- Location:
- packages/xml-rpc/tcl/system-procs.tcl
- Created:
- Thu Oct 9 22:14:04 2003
- Author:
- Vinod Kurup [vinod@kurup.com]
- CVS Identification:
$Id: system-procs.tcl,v 1.7 2024/10/08 15:27:42 antoniop Exp $
Procedures in this file
- system.add (public)
- system.listMethods (public)
- system.methodHelp (public)
- system.multicall (public)
Detailed information
system.add (public)
system.add [ args... ]
Simple test function. Add a variable number of integers.
- Returns:
- integer sum
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
system.listMethods (public)
system.listMethods
Enumerate the methods implemented by the XML-RPC server. The system.listMethods method requires no parameters.
- Returns:
- an array of strings, each of which is the name of a method implemented by the server.
- Author:
- Vinod Kurup
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
system.methodHelp (public)
system.methodHelp methodName
This method takes one parameter, the name of a method implemented by the XML-RPC server.
- Parameters:
- methodName (required)
- method implemented in XML-RPC
- Returns:
- a documentation string describing the use of that method. If no such string is available, an empty string is returned. The documentation string may contain HTML markup.
- Author:
- Vinod Kurup
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
system.multicall (public)
system.multicall array
Perform multiple requests in one call - see http://www.xmlrpc.com/discuss/msgReader$1208
Takes an array of XML-RPC calls encoded as structs of the form (in a Pythonish notation here):
{'methodName': string, 'params': array}
- Parameters:
- array (required)
- array of structs containing XML-RPC calls
- Returns:
- an array of responses. There will be one response for each call in the original array. The result will either be a one-item array containing the result value - this mirrors the use of <params> in <methodResponse> - or a struct of the form found inside the standard <fault> element.
- Author:
- Vinod Kurup
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.