diff --git a/examples/demo/client.py b/examples/demo/client.py index 8ee61c0..6384e3c 100644 --- a/examples/demo/client.py +++ b/examples/demo/client.py @@ -1,14 +1,14 @@ from suds.client import Client -url = 'http://127.0.0.1:8989/api.wsdl' +url = 'http://127.0.0.1:8080/ws/api.wsdl' client = Client(url, cache=None) print client -print client.service.Multiply(4, 5) -print client.service.Helloworld() -print client.service.Getperson() -p = client.service.Listpersons() -p = client.service.Setpersons(p) +print client.service.multiply(4, 5) +print client.service.helloworld() +print client.service.getperson() +p = client.service.listpersons() +p = client.service.setpersons(p) print p diff --git a/examples/demo/demo.py b/examples/demo/demo.py index 9a2f4dc..6553b21 100644 --- a/examples/demo/demo.py +++ b/examples/demo/demo.py @@ -80,7 +80,7 @@ root = DemoRoot(webpath='/ws') root.addprotocol('soap', tns='http://example.com/demo', typenamespace='http://example.com/demo/types', - baseURL='http://127.0.0.1:8989/ws/', + baseURL='http://127.0.0.1:8080/ws/', ) root.addprotocol('restjson')