Package brisa :: Package upnp :: Module soap :: Class SOAPProxy
[hide private]
[frames] | no frames]

Class SOAPProxy

source code

object --+
         |
        SOAPProxy

Proxy for making remote SOAP calls Based on twisted.web.soap.Proxy and SOAPpy.

Instance Methods [hide private]
 
__init__(self, url, namespace=None)
Constructor for the SOAPProxy class.
source code
string
call_remote(self, soapmethod, **kwargs)
Performs a remote SOAP call.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, url, namespace=None)
(Constructor)

source code 

Constructor for the SOAPProxy class.

Parameters:
  • url (string) - remote SOAP server
  • namespace (tuple) - calls namespace
Overrides: object.__init__

call_remote(self, soapmethod, **kwargs)

source code 

Performs a remote SOAP call.

Parameters:
  • soapmethod (string) - method to be called
  • kwargs (dictionary) - args to be passed, can be named.
Returns: string
the result text of the soap call.