Reputation: 33
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) and ZSI (too...confusing), I'm not sure that's possible.
I'm fine with it being in another language, though I'm hesitant to use php's soap libraries due to some previous issues I've had with php.
Yes, I would very much like to to be SOAP as this is destined to primarily provide data to a Silverlight client, and VS makes it dead simple to work with soap services. And no, it can't be an WCF service as all of the hosts are linux-based.
Much appreciated.
Upvotes: 3
Views: 1413
Reputation: 5834
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.
Upvotes: 1
Reputation: 3923
Checkout Twisted, great framework for building network services. And soap is basically an extension of xmlrpc.
Upvotes: 4