I have an application in python 2.5 which sends data through suds 0.3.6.
The problem is that the data contains non-ascii characters, so I need the following header t
At least in suds 0.4 (maybe earlier?) HTTP headers can also be passed in to the constructor or via the set_options method:
set_options
client = suds.client.Client(url, headers={'key': 'value'}) client.set_options(headers={'key2': 'value'})