Difference between revisions of "ZSI Examples"

From PeformIQ Upgrade
Jump to navigation Jump to search
Line 12: Line 12:


wget http://saintbook.org/MightyMaxims/MightyMaxims.asmx?WSDL
wget http://saintbook.org/MightyMaxims/MightyMaxims.asmx?WSDL
 
</pre>
<pre>


<pre>
<pre>

Revision as of 08:47, 8 February 2008

Some Python ZSI Examples

CDPBilling

Python SOAP - CDP Billing

SaintBook

$ cat wsdl.sh 
#!/bin/sh

wget http://saintbook.org/MightyMaxims/MightyMaxims.asmx?WSDL
from ZSI.wstools import WSDLTools

...

location = 'http://saintbook.org/MightyMaxims/MightyMaxims.asmx?WSDL'

load = reader.loadFromURL

wsdl = load(location)
...