soap

Python SOAP Client – use SUDS or something else?

Python SOAP Client – use SUDS or something else? Question: I am currently looking into implementing a client which will use an existing extensive SOAP management API. I looked into different SOAP implementations like pysimplesoap and SUDS. While the first had problems parsing the WSDL because of too much recursions, suds worked fine (but slow) …

Total answers: 4

Twisted or Celery? Which is right for my application with lots of SOAP calls?

Twisted or Celery? Which is right for my application with lots of SOAP calls? Question: I’m writing a Python application that needs both concurrency and asynchronicity. I’ve had a few recommendations each for Twisted and Celery, but I’m having trouble determining which is the better choice for this application (I have no experience with either). …

Total answers: 2

Is it possible to use python suds to read a wsdl file from the file system?

Is it possible to use python suds to read a wsdl file from the file system? Question: 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 …

Total answers: 3

How to write a Web Service for Google App Engine?

How to write a Web Service for Google App Engine? Question: I am really new to Python and I have been looking for an example on how to write a Web Service (XML – SOAP) in Python with Google App Engine with no luck. Can anyone point me to an article or give me an …

Total answers: 5

Public free web services for testing soap client

Public free web services for testing soap client Question: Are there any publicly available SOAP 1.2/WSDL 2.0 compliant free web services for testing a Python based soap client library (e.g. Zolera SOAP Infrastructure)? So far, it appears to me that Google Web API may be the only option. Otherwise, how can one test a SOAP …

Total answers: 1

What's the best python soap stack for consuming Amazon Web Services WSDL?

What's the best python soap stack for consuming Amazon Web Services WSDL? Question: Python has a number of soap stacks; as near as I can tell, all have substantial defects. Has anyone had luck consuming and using WSDL for S3, EC2, and SQS in python? My experience is that suds fails when constructing a Client …

Total answers: 4

What SOAP client libraries exist for Python, and where is the documentation for them?

What SOAP client libraries exist for Python, and where is the documentation for them? Question: I’ve never used SOAP before and I’m sort of new to Python. I’m doing this to get myself acquainted with both technologies. I’ve installed SOAPlib and I’ve tried to read their Client documentation, but I don’t understand it too well. …

Total answers: 14