I'm using the Python SUDS library to talk with ExactTarget. I've been using various versions (SUDS 0.3.6 under Python 2.5, SUDS 0.3.8 and 0.4 under Python 2.6) and each version seems to have its own little quibbles.
I'd prefer using 0.4 (since it's the latest and seems to have good caching), but I'm getting an error with my web service ...
From suds documentation, I can create a Client if I have a url for the WSDL.
from suds.client import Client
url = 'http://localhost:7080/webservices/WebServiceTestBean?wsdl'
client = Client(url)
I currently have the WSDL file on my file system. Is it possible to use suds to read the WSDL file from my file system instead of hosting ...
Hello!
Currently I'm struggling while trying to generate soap message with SUDS. Things I want to achieve is something like
xml_string = client.service.getPercentBodyFat('jeff', 68, 170)
instead of calling remote procedure I want to get soap message as xml string or object.
Thank You!
...