Reputation: 8762
I have an appengine app that I want to use as a front end to some existing web services. How can I consume those WS from my app?
I'm using python
Upvotes: 0
Views: 156
Reputation: 12986
In addition to just URLFetch and hand constructing SOAP envelopes, you can also use higher level SOAP libraries like SUDS. Which can parse WSDL and construct requests for you. For performance reasons you will want to cache the WSDL. In one project I parse this offline and deploy the optimised code with the application.
Upvotes: 1