How to write a Web Service for Google App Engine? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:50:08Z http://stackoverflow.com/feeds/question/331600 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/331600/how-to-write-a-web-service-for-google-app-engine 3 How to write a Web Service for Google App Engine? Martin 2008-12-01T17:39:47Z 2009-01-06T23:53:06Z <p>Hello all,</p> <p>I am simply wondering how to write a Web Service (XML - SOAP) for Google App Engine? I am really new with Python and I have been looking for example for a while, but no chance. </p> <p><strong>Does anybody could point me out any article or simply could give me an example of a Web Service in Python with Google App Engine?</strong></p> <p>Thanks!</p> http://stackoverflow.com/questions/331600/how-to-write-a-web-service-for-google-app-engine/331912#331912 0 Answer by Mitchel Sellers for How to write a Web Service for Google App Engine? Mitchel Sellers 2008-12-01T19:30:06Z 2008-12-01T21:06:04Z <p>Here is a <a href="http://pywebsvcs.sourceforge.net/" rel="nofollow">Python Web Services</a> project that might be helpful.</p> <p>Otherwise, doing a <a href="http://tinyurl.com/6hn9tj" rel="nofollow">simple search,</a> seems to get you a lot of examples.</p> <p><strong>EDIT</strong></p> <p>And here is a <a href="http://diveintopython.org/soap_web_services/" rel="nofollow">SOAP consuming demonstration</a>....</p> http://stackoverflow.com/questions/331600/how-to-write-a-web-service-for-google-app-engine/332970#332970 1 Answer by jamtoday for How to write a Web Service for Google App Engine? jamtoday 2008-12-02T03:40:09Z 2008-12-02T03:40:09Z <p>If you want to do something with App Engine specifically, there are libraries that will make it much faster on your end. I'd recommend looking at the XML-RPC and REST examples. </p> <p><a href="http://appengine-cookbook.appspot.com/recipe/xml-rpc-server-using-google-app-engine/" rel="nofollow">http://appengine-cookbook.appspot.com/recipe/xml-rpc-server-using-google-app-engine/</a></p> <p><a href="http://github.com/fczuardi/gae-rest/tree/master" rel="nofollow">http://github.com/fczuardi/gae-rest/tree/master</a></p> http://stackoverflow.com/questions/331600/how-to-write-a-web-service-for-google-app-engine/333122#333122 0 Answer by carson for How to write a Web Service for Google App Engine? carson 2008-12-02T05:22:18Z 2008-12-03T03:37:25Z <p>I was curious about this myself and not finding anything I decided to try to get something to work. The short answer is that it turns out a SOAP service can actually be done using the latest alpha <a href="http://pywebsvcs.sourceforge.net/zsi.html" rel="nofollow">ZSI library</a>. However it isn't simple and I didn't do much more than a simple request so it could fall apart with a complex type. I'll try to find time to write a tutorial on how to do it and edit this answer with more detail.</p> <p>Unless this is a hard requirement I would do what jamtoday says and go with a REST or RPC service. The SOAP way could be filled with trouble.</p> <p>Update: For anyone interested I've written a <a href="http://www.ioncannon.net/web-services/180/soap-on-the-google-app-engine-platform/" rel="nofollow">tutorial on how to deploy a SOAP service to the Google App Engine</a>. It is long process so I'm just linking to it instead of pasting it all here.</p> http://stackoverflow.com/questions/331600/how-to-write-a-web-service-for-google-app-engine/418690#418690 3 Answer by Martin for How to write a Web Service for Google App Engine? Martin 2009-01-06T23:53:06Z 2009-01-06T23:53:06Z <p>Someone has written a great blog post about the subject: <a href="http://www.ioncannon.net/web-services/180/soap-on-the-google-app-engine-platform/" rel="nofollow">http://www.ioncannon.net/web-services/180/soap-on-the-google-app-engine-platform/</a>.</p>