I am using suds 0.3.6.When creating a suds client, I randomly get an error: httplib.py, _read_status(), line 355, class httplib.BadStatusLine\'
Im trying to send an email via Exchange Web Services using suds 0.4.1: import suds from suds.client import Client
When using SUDS in a Django app, alongside Sentry error logging, I hit a problem where SUDS raises an error and Sentry tries to handle it, fails horribly and causes a server 500:
Having trouble with py2exe importing the suds module, and narrowed i开发者_运维问答t down to the following:
I have a Python 2.7 script SendPreord.py which communicates with web services using SUDS. In the script I call a web service method passing some parameters as strings (runJob(par1, par2, par3)). It wo
I understand how to add a header to the SOAP request. But that generates a header that doesn\'t match the one I need to pass. That returns this header:
I\'m calling a method called getNewReports() of a webservice. This method takes in a u开发者_Go百科sername and password and outputs xml structured data.
I have a specific problem that I have not yet found an answer to.Basically I need to pass a list of numbers into a function do some math and return them.I can pass one number at a time without a probl
I have written a client for JIRA in python and I 开发者_JAVA技巧was wondering if there is any way to use my existing libraries written in python for an iPhone jira client.
I am using suds to consume SOAP web services like this way: from suds.client import Client url = \"http://www.example.com?wsdl\"