Package suds :: Module client :: Class SimClient
[hide private]
[frames] | no frames]

Class SimClient

source code

SoapClient --+
             |
            SimClient

Loopback client used for message/reply simulation.

Instance Methods [hide private]
builtin or subclass of Object
invoke(self, args, kwargs)
Send the required soap message to invoke the specified method
source code
 
__reply(self, reply, args, kwargs)
simulate the reply
source code
 
__fault(self, reply)
simulate the (fault) reply
source code

Inherited from SoapClient: __init__, failed, headers, last_received, last_sent, location, send, succeeded

Class Methods [hide private]
 
simulation(cls, kwargs)
get whether loopback has been specified in the kwargs.
source code
Class Variables [hide private]
  injkey = '__inject'
Instance Variables [hide private]

Inherited from SoapClient: cookiejar, method, options, service

Method Details [hide private]

invoke(self, args, kwargs)

source code 

Send the required soap message to invoke the specified method

Parameters:
  • args (list) - A list of args for the method invoked.
  • kwargs (dict) - Named (keyword) args for the method invoked.
Returns: builtin or subclass of Object
The result of the method invocation.
Overrides: SoapClient.invoke