Yes; the urlfetch API can do anything that's accomplished through an HTTP request, as long as the web service isn't really slow; your scripts only have 10 seconds to execute and they'll timeout if they try to contact a web service that takes longer than that to respond.
Note that if the web service you want to use has a standard python API kit, it's probably not going to work but will need to be adapted to use urlfetch instead of urllib or sockets. Or you could just write the code to do the HTTP calls and parse the responses yourself. On Sep 18, 2:39 am, pacific <[EMAIL PROTECTED]> wrote: > Hi there > > I have just started coding in GAE , I want to develop an application > which can call a different web services like amazon book catalog > search web service but enormous amount of search on blogs , youtube , > google code didnt gave me any example of how to call web services from > Python. > > I just got some examples where some rss feeds are being called but no > application where in a web service was called for doing some function > for eq searching for a book on amazon and amazon has a web service for > that , i did that in Java and C# but cant figurede out how to do in > GAE > > Thanks for the help > > pacific --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
