Difference between revisions of "ZSI Examples"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) (Replacing page with '= Some ZSI Examples = == CDPBilling == Category:Python Category:SOAP Category:Testing Category:Projects') |
PeterHarding (talk | contribs) |
||
Line 1: | Line 1: | ||
= Some ZSI Examples = | =Some Python ZSI Examples= | ||
== CDPBilling == | ==CDPBilling== | ||
[[Python SOAP - CDP Billing]] | |||
==SaintBook== | |||
<pre> | |||
$ cat wsdl.sh | |||
#!/bin/sh | |||
wget http://saintbook.org/MightyMaxims/MightyMaxims.asmx?WSDL | |||
<pre> | |||
<pre> | |||
from ZSI.wstools import WSDLTools | |||
... | |||
location = 'http://saintbook.org/MightyMaxims/MightyMaxims.asmx?WSDL' | |||
load = reader.loadFromURL | |||
wsdl = load(location) | |||
... | |||
</pre> | |||
[[Category:Python]] | [[Category:Python]] |
Revision as of 09:47, 8 February 2008
Some Python ZSI Examples
CDPBilling
SaintBook
$ cat wsdl.sh #!/bin/sh wget http://saintbook.org/MightyMaxims/MightyMaxims.asmx?WSDL <pre> <pre> from ZSI.wstools import WSDLTools ... location = 'http://saintbook.org/MightyMaxims/MightyMaxims.asmx?WSDL' load = reader.loadFromURL wsdl = load(location) ...