xmlrpc.XMLRPCMethod

A class for creating a remote method.
The method created can be invoked like any other function. All parameters passed will be converted to XML. The remote procedure will be called using the XML-RPC protocoll and the result will be converted to JavaScript objects and returned.
If the RPC returned an XML-RPC Fault then the Fault will be raised as an exception.

Asynchronous operation:
If the last parameter passed to the method is an XMLRPCAsyncCallback object, then the remote method will be called asynchronously. The results and errors are passed to the callback.
This is the preffered way for asynchronous operation. callAsync is deprecated and will be removed in future versions.

constructor

XMLRPCMethod(url, methodName, user=null, pass=null)

parameters:

instance methods


instance properties


interfaces