I started using suds for soap clients and will never touch ZSI again.
I know suds is meant for the client side, but I would love to use it to make also the server site, in order to get rid of ZSI.
How could I use suds to parse soap requests instead of responses?
[updates]
- If you want to expose some interface using SOAP, the best option seems to be rpclib. Flask-enterprise looks promising. Both will produce a WSDL from Python code.
- If instead you need to write a Python SOAP webservice adhering to a WSDL produced by a third part, nothing so far beats ZSI.