RosettaCodeData/Task/SOAP/Python/soap.py

5 lines
146 B
Python
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
from SOAPpy import WSDL
proxy = WSDL.Proxy("http://example.com/soap/wsdl")
result = proxy.soapFunc("hello")
result = proxy.anotherSoapFunc(34234)