Roman Prykhodchenko
Roman Prykhodchenko

Reputation: 13315

Python framework for SOAP web services

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.

Upvotes: 0

Views: 1472

Answers (3)

Steven Rumbalski
Steven Rumbalski

Reputation: 45542

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

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

Upvotes: 0

Ad Hoc
Ad Hoc

Reputation: 333

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.

Upvotes: 1

Alexander Artemenko
Alexander Artemenko

Reputation: 22746

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?

Upvotes: 0

Related Questions