xmlrpc::invoke_method (private)
xmlrpc::invoke_method method_name arguments
Defined in packages/xml-rpc/tcl/xml-rpc-procs.tcl
Call the given method on the OpenACS server. It's up to the caller to catch any error that we get.
- Parameters:
- method_name (required)
- methodName from XML-RPC
- arguments (required)
- list of arguments
- Returns:
- result of the OpenACS proc
- Author:
- Vinod Kurup
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Source code: # check that the method is registered as a valid XML-RPC method if {![nsv_exists xmlrpc_procs $method_name]} { return -code error -errorcode 2 "methodName $method_name doesn't exist" } ns_log debug "xmlrpc::invoke_method method $method_name args $arguments" set result [uplevel #0 [list $method_name] $arguments] return $resultXQL Not present: Generic, PostgreSQL, Oracle