What Is A Good Framework For A Soap Service?
I'm looking for a good framework to use for a soap service. I'd prefer to use a pythonic framework, but after looking at soaplib/rpclib (too unstable), SOAPy (doesn't work with 2.7
Solution 1:
Checkout Twisted, great framework for building network services. And soap is basically an extension of xmlrpc.
Solution 2:
I have used Spring WS, JAVA in my previous project. It worked well, without any glitches. We served more than a million API request a day.
Post a Comment for "What Is A Good Framework For A Soap Service?"