views:

209

answers:

2

I have read that SUDS doesn't work on App Engine. http://osdir.com/ml/fedora-suds-list/2010-03/msg00004.html

Can anyone confirm or refute this? Can you suggest an alternative for calling SOAP services from App Engine's python runtime?

+1  A: 

Have you tried ElementSoap? It seems like a good option.

Jason Hall
I have looked at it. It's better than nothing, but it still requires a fair bit of manual work to create method wrappers for every call. I might fall back on it in a pinch.Anyone know of other, possibly easier options?
Forest
A: 

http://code.google.com/p/google-api-adwords-python-lib/ This is a soap library from Google. I have not had time to test it,

Alvin Wang
Thanks, but this looks more like a Google-specific API which uses SOAPpy and/or ZSI as the underlying SOAP library. (I might consider using one of those libraries myself, but that's probably a last resort considering how many claims I have read that they're no fun work with.)
Forest