Prev: A "scopeguard" for Python
Next: Eric4 vs Python3.1
From: BlueBird on 3 Mar 2010 11:32 Hi, I am looking for a SOAP 1.2 python client. To my surprise, it seems that this does not exist. Does anybody know about this ? The following clients seem to be both unmaintained and still supporting only SOAP 1.1 : - SUDS - zsi - SOAPy cheers, Philippe
From: Stefan Behnel on 3 Mar 2010 14:35 BlueBird, 03.03.2010 17:32: > I am looking for a SOAP 1.2 python client. To my surprise, it seems > that this does not exist. Does anybody know about this ? SOAP may be an overly bloated protocol, but it's certainly not black magic. It's not hard to do manually if you really need to: http://effbot.org/zone/element-soap.htm Stefan
From: Waldemar Osuch on 4 Mar 2010 00:25 On Mar 3, 9:32 am, BlueBird <p...(a)freehackers.org> wrote: > Hi, > > I am looking for a SOAP 1.2 python client. To my surprise, it seems > that this does not exist. Does anybody know about this ? > > The following clients seem to be both unmaintained and still > supporting only SOAP 1.1 : > > - SUDS suds unmaintained? I beg to differ. > - zsi > - SOAPy > > cheers, > > Philippe
From: BlueBird on 5 Mar 2010 05:01 On 3 mar, 20:35, Stefan Behnel <stefan...(a)behnel.de> wrote: > BlueBird, 03.03.2010 17:32: > > > I am looking for a SOAP 1.2 python client. To my surprise, it seems > > that this does not exist. Does anybody know about this ? > > SOAP may be an overly bloated protocol, but it's certainly not black magic. > It's not hard to do manually if you really need to: > > http://effbot.org/zone/element-soap.htm But this requires a goog knowloedge of SOAP, in order to parse everything correctly. The reason I want to use a ready-made client is that I have about zero knowledge about SOAP, and even more in the differences between SOAP 1.1 and 1.2 . cheers, Philippe
From: lbolla on 5 Mar 2010 07:19
On Mar 5, 10:01 am, BlueBird <p...(a)freehackers.org> wrote: > On 3 mar, 20:35, Stefan Behnel <stefan...(a)behnel.de> wrote: > > > BlueBird, 03.03.2010 17:32: > > > > I am looking for a SOAP 1.2 python client. To my surprise, it seems > > > that this does not exist. Does anybody know about this ? > > > SOAP may be an overly bloated protocol, but it's certainly not black magic. > > It's not hard to do manually if you really need to: > > >http://effbot.org/zone/element-soap.htm > > But this requires a goog knowloedge of SOAP, in order to parse > everything correctly. The reason I want to use a ready-made client is > that I have about zero knowledge about SOAP, and even more in the > differences between SOAP 1.1 and 1.2 . > > cheers, > > Philippe I use a thin custom-made python wrapper around gSoap[1], which is tens of times faster than ZSI. L. [1] http://www.cs.fsu.edu/~engelen/soapdoc2.html |