Difference between revisions of "ZSI Examples"

From PeformIQ Upgrade
Jump to navigation Jump to search
(Replacing page with '= Some ZSI Examples = == CDPBilling == Category:Python Category:SOAP Category:Testing Category:Projects')
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 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

<pre>

<pre>
from ZSI.wstools import WSDLTools

...

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

load = reader.loadFromURL

wsdl = load(location)
...