tags:

views:

61

answers:

3

Hi!

I need an advice. What python framework I can use to develop a SOAP web service? I know about SOAPpy and ZSI but that libraries aren't under active development. Is there something better?

Thanks.

A: 

If library is not under active development, then there are two options: it was abandoned, it has no errors anymore.

Why are you looking something else? Did you test these two?

Alexander Artemenko
I have some negative feedbacks about SOAPpy
Roman Prykhodchenko
+1  A: 

I've used SOAPpy before and wouldn't recommend it unless you need to highly customize your web service to get it to interface with other non-standard SOAP implementations.

I haven't used ZSI, but I understand that they tried to incorporate some of SOAPpy's features into ZSI.

You might try looking at soaplib for creating a SOAP web service. I've heard good things, but haven't used it myself yet.

Ad Hoc
I found soaplib the best I need.
Roman Prykhodchenko
A: 

I've used suds successfully for a project where I had tried and failed to use SOAPpy.

http://sourceforge.net/projects/python-suds/

Steven Rumbalski
Suds allows to create only soap clients.
Roman Prykhodchenko
oops. should have read more carefully.
Steven Rumbalski