[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

SOAP 1.2 Python client ?

BlueBird

3/3/2010 4:32:00 PM


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
5 Answers

Stefan Behnel

3/3/2010 7:35:00 PM

0

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/elemen...

Stefan

Waldemar Osuch

3/4/2010 5:25:00 AM

0

On Mar 3, 9:32 am, BlueBird <p...@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

BlueBird

3/5/2010 10:01:00 AM

0

On 3 mar, 20:35, Stefan Behnel <stefan...@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/elemen...

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

lbolla

3/5/2010 12:19:00 PM

0

On Mar 5, 10:01 am, BlueBird <p...@freehackers.org> wrote:
> On 3 mar, 20:35, Stefan Behnel <stefan...@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/elemen...
>
> 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/soa...

BlueBird

3/23/2010 12:39:00 PM

0

On 5 mar, 13:19, lbolla <lbo...@gmail.com> wrote:
> On Mar 5, 10:01 am, BlueBird <p...@freehackers.org> wrote:
>
>
>
>
>
> > On 3 mar, 20:35, Stefan Behnel <stefan...@behnel.de> wrote:
>
> > > BlueBird, 03.03.2010 17:32:
>
> > > > I am looking for aSOAP1.2 python client. To my surprise, it seems
> > > > that this does not exist. Does anybody know about this ?
>
> > >SOAPmay 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/elemen...
>
> > But this requires a goog knowloedge ofSOAP, in order to parse
> > everything correctly. The reason I want to use a ready-made client is
> > that I have about zero knowledge aboutSOAP, and even more in the
> > differences betweenSOAP1.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.

I looked at gSoap and the solution seemed really nice. They can
generate C that I can call with ctypes.

The only problem is that I am working on a closed source software and
their licensing cost for close source were too expensive for my
company.

After much much digging, we found out the problem and managed to solve
it with SUDS. When calling a .NET service, you should not reference
the soap envelope spec with 'http://schemas.xmlsoap...
envelope/' but with 'http://schemas.xmlsoap...envelope' .
The .NET server implementation seems to be very picky about the
last / .

Yeah for SUDS and oooooh for .NET

cheers,

Philippe