From 7f50ca6d385b7bcc204bbee08a60ed917f667088 Mon Sep 17 00:00:00 2001 From: Christophe de Vienne Date: Sat, 24 Sep 2011 22:49:59 +0200 Subject: [PATCH] Add a small soap client for the demo app, so that we can see the wsdl generation is _not_ working properly... to be continued --- examples/demo/client.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 examples/demo/client.py diff --git a/examples/demo/client.py b/examples/demo/client.py new file mode 100644 index 0000000..118b13c --- /dev/null +++ b/examples/demo/client.py @@ -0,0 +1,6 @@ +from suds.client import Client + +url = 'http://127.0.0.1:8989/api.wsdl' + +client = Client(url) +