up vote 100 down vote favorite
61
share [g+] share [fb]

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. Is there anything else I can look into which is more suited for being a SOAP Client library for Python?

Edit: Just in case it helps, I'm using Python 2.6.

link|improve this question

64% accept rate
Does it have to be SOAP, such as using pre-existing web services? Python's xmlrpclib is dead simple to use and I've migrated our SOAP services to XMLRPC with it. – Kirk Strauser Oct 16 '08 at 1:03
By the way, I just went through and rated everyone up who'd been down-rated for no apparent reason. – Kirk Strauser Oct 16 '08 at 14:50
5  
Sometimes one just want to connect to service that is ONLY provided over SOAP so yes - good python SOAP lib is something that one will sooner or later need. One won't have any chance to convince service provider to replace SOAP with something "cleaner"... – romke Sep 23 '09 at 20:24
2  
Can anyone provide an update relevant in 2011? Apparently no-one can ever ask this question again. – Marcin Oct 17 '11 at 13:05
feedback

protected by Community Dec 14 '11 at 0:47

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

17 Answers

up vote 127 down vote accepted

Unfortunately, at the moment, I don't think there is a "best" Python SOAP library. Each of the mainstream ones available has its own pros and cons.

Older libraries:

  • SOAPy: Was the "best," but no longer maintained. Does not work on Python 2.5+

  • ZSI: Very painful to use, and development is slow. Has a module called "SOAPpy", which is different than SOAPy (above).

"Newer" libraries:

  • SUDS: Very Pythonic, and easy to create WSDL-consuming SOAP clients. Creating SOAP servers is a little bit more difficult.

  • soaplib: Creating servers is easy, creating clients a little bit more challenging.

  • ladon: Creating servers is much like in soaplib (using a decorator). Ladon exposes more interfaces than SOAP at the same time without extra user code needed.

  • pysimplesoap: very lightweight but useful for both client and server - includes a web2py server integration that ships with web2py.

Of the above, I've only used SUDS personally, and I liked it a lot.

link|improve this answer
Python 2.5.2, SOAPpy 0.12.0 and my SOAP clients work. – bortzmeyer Oct 16 '08 at 9:45
Looks like you misspelled SOAPpy. Or do soappy and soapy both exist? Either way you might want to edit to clarify – amarillion May 15 '09 at 19:15
SOAPy and SOAPpy are actually different. I've edited to clarify, and turned the post into a community wiki. – Samat Jain May 21 '09 at 20:16
5  
+1 for SUDS, great library! I ran into problems using SUDS with HTTPS web services behind a proxy. Turns out it is a known Python urllib2 issue. See my answer for more details. – sstock Aug 6 '09 at 8:35
I've personally, had a lot of success with SOAPpy. Although, I've occasionally had to write some wrappers to fix some things. ( .NET consuming, WSDL serving ) – sfossen Oct 20 '10 at 15:41
show 2 more comments
feedback

I followed the advice of other answers to this question and gave SUDS a try. After using it "in anger" I must agree: SUDS is very nice! Highly recommended!

I did run into trouble calling HTTPS-based web services from behind a proxy. At the time of this writing, this affects all Python web-service clients that use urllib2, so I'll document the solution here.

The urllib2 module shipping with python 2.6.2 and below will not issue a CONNECT to the proxy for HTTPS-over-HTTP-proxy sessions. This results in a long timeout, or if you are lucky, an error that looks like:

abort: error: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol

This is issue1424152 on the Python bug tracker. There are patches attached to the bug report that will fix this in Python 2.x and Python 3.x.

link|improve this answer
Just installed it and even though I'm totally new to Python it felt very intuitive and I could send SUDS requests i minutes time. The library is great! – Leonid Jun 11 '11 at 12:28
Do you mind updating this one. I ask because I clicked on the link, and the bug is fixed. – Tshepang Jun 27 '11 at 15:12
feedback

I had good experience with SUDS https://fedorahosted.org/suds

Used their TestSuite as documentation.

link|improve this answer
SUDS is awesome! really easy to use, good docs, great stuff! – Sander Versluys Oct 5 '11 at 15:40
feedback

SUDS is the way to go, no question about it.

link|improve this answer
but no ssl support – DataGreed Nov 23 '10 at 16:45
2  
And it also fails on a large number of WSDL files. To back that claim up - the Bing maps API's for example, some of these fail and suds can't parse them. – Orange Box Jan 10 '11 at 10:17
i found SUDS supports SSL endpoints. – leonigmig May 6 '11 at 15:27
feedback

SUDS is easy to use, but is not guaranteed to be re-entrant. If you're keeping the WSDL Client() object around in a threaded app for better performance, there's some risk involved. The solution to this risk, the clone() method, throws the unrecoverable Python 5508 bug, which seems to print but not really throw an exception. Can be confusing, but it works. It is still by far the best Python SOAP client.

link|improve this answer
feedback

Anyone have an example of a SUDS web services server. Their client is great.

link|improve this answer
I believe it is intended only to consume, not to serve. – Orange Box Jan 10 '11 at 10:18
feedback

FYI: I opened a similar post that targets SOAP for Python 3: What's the best SOAP client library for Python 3.x?

link|improve this answer
feedback

We released a new library: PySimpleSOAP, that provides support for simple and functional client/server. It goals are: ease of use and flexibility (no classes, autogenerated code or xml is required), WSDL introspection and generation, WS-I standard compliance, compatibility (including Java AXIS, .NET and Jboss WS). It is included into Web2Py to enable full-stack solutions (complementing other supported protocols such as XML_RPC, JSON, AMF-RPC, etc.).

If someone is learning SOAP or want to investigate it, I think it is a good choice to start.

link|improve this answer
feedback

suds is pretty good. I tried SOAPpy but didn't get it to work in quite the way I needed whereas suds worked pretty much straight away.

link|improve this answer
What way was that? – Tshepang Jun 27 '11 at 15:17
feedback

Just an FYI warning for people looking at SUDS, until this ticket is resolved, SUDS does not support the "choice" tag in WSDL:

https://fedorahosted.org/suds/ticket/342

see: suds and choice tag

link|improve this answer
feedback

Could this help: http://users.skynet.be/pascalbotte/rcx-ws-doc/python.htm#SOAPPY

I found it by searching for wsdl and python, with the rational being, that you would need a wsdl description of a SOAP server to do any useful client wrappers....

link|improve this answer
feedback

We'd used SOAPpy from Python Web Services, but it seems that ZSI (same source) is replacing it.

link|improve this answer
feedback

As I suggested here I recommend you roll your own. It's actually not that difficult and I suspect that's the reason there aren't better Python SOAP libraries out there.

link|improve this answer
feedback

Im using SOAPpy with Python 2.5.3 in a production setting.

I had to manually edit a couple of files in SOAPpy (something about header code being in the wrong place) but other than that it worked and continues to do so very reliably.

link|improve this answer
We did the same and are using SOAPpy with Python 2.6.3. – Joe L. Aug 31 '10 at 13:25
feedback

I believe soaplib has deprecated its SOAP client ('sender') in favor of suds. At this point soaplib is focused on being a web framework agnostic SOAP server ('receiver'). Currently soaplib is under active development and is usually discussed in the Python SOAP mailing list:

http://mail.python.org/mailman/listinfo/soap

link|improve this answer
feedback

What we was discussing in soap[at]python.org is has a really agnostic SOAP server with pythonic implementation; conversations fall in TGWS and soaplib as the best candidates. The best way to help a project for SOAP is join us and talk about in soap[at]python.org http://code.google.com/p/pysimplesoap/ looks good i think this people can contribute too.

In my conclusion we have this:

Soap client side:

use only Suds

Soap server side:

We have TGWS, soaplib (pysimplesoap not tested) IMHO use and help soaplib must be the choice.

my 2cents

Best regards,

link|improve this answer
feedback

I am using SUDS and python for making a client (wsdl consumption) Its easy to create and pretty straightforward. Unfortunately its taking some time....my java client is way faster..

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.