Object that represents a binding (connection) to a SOAP server.
Once the binding is created, various ways of sending and
receiving SOAP messages are available, including a "name overloading"
style. Soap Client
Methods
|
|
Send
__init__
accept_delegatation
|
|
Send
|
Send (
self,
url,
opname,
obj,
**kw,
)
Send a message. If url is None, use the value from the
constructor (else error). obj is the object (data) to send.
Data may be described with a requesttypecode keyword, or a
requestclass keyword; default is the class typecode (if
there is one), else Any.
|
|
__init__
|
__init__ ( self, **kw )
Initialize.
Keyword arguments include:
host, port -- where server is; default is localhost
ssl -- no default
=1 use SSL
>1 use GSI
url -- resource to POST to
soapaction -- value of SOAPAction header
auth -- (type, name, password) triplet; default is unauth
ns -- default namespace
nsdict -- namespace entries to add
tracefile -- file to dump packet traces
cert_file, key_file -- SSL data (q.v.)
readerclass -- DOM reader class
|
|
accept_delegatation
|
accept_delegatation (
self,
oids,
buffers,
time_req,
)
|
|