Add a small soap client for the demo app, so that we can see the wsdl generation is _not_ working properly... to be continued

This commit is contained in:
Christophe de Vienne 2011-09-24 22:49:59 +02:00
parent d24f84d940
commit 7f50ca6d38

6
examples/demo/client.py Normal file
View File

@ -0,0 +1,6 @@
from suds.client import Client
url = 'http://127.0.0.1:8989/api.wsdl'
client = Client(url)