Difference between revisions of "ZSI Examples"

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


[[Category:Python]]
[[Category:Python]]
[[Category:SOAP]]
[[Category:ZSI]]
[[Category:Testing]]
[[Category:Projects]]

Revision as of 14:41, 19 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)
...