Carlos Blanco
Carlos Blanco

Reputation: 8762

Can I consume a web service from an appengine app?

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

Answers (2)

Tim Hoffman
Tim Hoffman

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

Amber
Amber

Reputation: 526753

You would use the URLFetch API.

Upvotes: 1

Related Questions