10

I need to rewrite an existing SOAP service (we have a WSDL file) in Django/Python what libs or solutions you will recomend to me? Link are wellcome.

PS: ZSI can parse wsdl, but I don't like it, it is too old (may be I'm wrong)

Andrey Koltsov
  • 1,956
  • 6
  • 24
  • 43

2 Answers2

8

I used SOAPlib. But the project has been moved and is now named Spyne.

VinGarcia
  • 1,015
  • 12
  • 19
Andrey Koltsov
  • 1,956
  • 6
  • 24
  • 43
  • 5
    Jumping from link to link of the project evolution, you'd (currently) reach [spyne](http://spyne.io) – tutuDajuju Sep 17 '14 at 21:46
  • I have implemented a SOAP web server using `Spyne` and `Flask` and I encountered [this issue](https://stackoverflow.com/questions/44941419/how-to-make-named-items-in-soap-web-service-response-in-flask-python) for both; do you know the answer? – Zeinab Abbasimazar Jul 24 '17 at 08:12
0

you should check out this project

http://sourceforge.net/projects/pywebsvcs/

  • I read about ZSI, but I didn't found solution how use ZSI+Django – Andrey Koltsov Mar 02 '11 at 13:42
  • 1
    Webservices is actually more of a python programming issue than django... http://wiki.python.org/moin/WebServices .. u should find a couple there.. and also check out this thread http://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-fo – Dammy Akinsiku Mar 02 '11 at 15:37