Part of twisted.web.xmlrpc View Source View In Hierarchy
Pass the URL of the remote XML-RPC server to the constructor.
Use proxy.callRemote('foobar', *args) to call remote method
'foobar' with *args.
| Instance Variable | user | The username with which to authenticate with the server when making calls.
If specified, overrides any username information embedded in url.  If not specified, a value may be taken fromurlif present. (type:strorNoneType) | 
| Instance Variable | password | The password with which to authenticate with the server when making calls.
If specified, overrides any password information embedded in url.  If not specified, a value may be taken fromurlif present. (type:strorNoneType) | 
| Instance Variable | allowNone | allow the use of None values in parameters. It's passed to the underlying xmlrpclibimplementation. Defaults toFalse. (type:boolorNoneType) | 
| Instance Variable | useDateTime | Accept datetime values as datetime.datetime objects. also passed to the 
underlying xmlrpclibimplementation. Defaults toFalse. (type:bool) | 
| Instance Variable | connectTimeout | Number of seconds to wait before assuming the connection has failed. (type: float) | 
| Instance Variable | queryFactory | Object returning a factory for XML-RPC protocol. Mainly useful for tests. | 
| Method | __init__ | No summary | 
| Method | callRemote | Call remote XML-RPC methodwith given arguments. | 
| Instance Variable | _reactor | The reactor used to create connections. (type: Object providing twisted.internet.interfaces.IReactorTCP) | 
url.  If not specified, a value may be taken from 
url if present. (type: str or NoneType)
  url.  If not specified, a value may be taken from 
url if present. (type: str or NoneType)
  xmlrpclib
implementation. Defaults to False. (type: bool or NoneType)
  xmlrpclib
implementation. Defaults to False. (type: bool)
  twisted.internet.interfaces.IReactorTCP)
  | Parameters | url | The URL to which to post method calls.  Calls will be made over SSL if the 
scheme is HTTPS.  If netloc contains username or password information, 
these will be used to authenticate, as long as the userandpasswordarguments are not specified. (type:str) | 
method with given arguments.| Returns | a defer.Deferredthat will fire with the method response, or a failure if the method failed.
Generally, the failure type will beFault, but you can also 
have anIndexErroron some buggy servers giving empty 
responses.If the deferred is cancelled before the request completes, the 
connection is closed and the deferred will fire with a  | |