[google-appengine] Re: How to create SOAP server in GAE

2008-09-22 Thread Greg
You are right that appengine does the webserving for you. To provide a SOAP service, you simply need to... - Decode the XML contained in the request - Do something with it - Encode the response in XML. I'll leave it to you to google for python XML modules. Cheers! Greg. On Sep 23, 5:00 am, "Ha

[google-appengine] Re: How to create SOAP server in GAE

2008-09-23 Thread Hasanat Kazmi
Of course I can do this but can't I somehow use SOAPpy to save my time? On Tue, Sep 23, 2008 at 6:32 AM, Greg <[EMAIL PROTECTED]> wrote: > > You are right that appengine does the webserving for you. To provide a > SOAP service, you simply need to... > > - Decode the XML contained in the request >

[google-appengine] Re: How to create SOAP server in GAE

2008-09-24 Thread Davide Rognoni
Yes, saving our time, please :-) QUICK START http://pywebsvcs.sourceforge.net/soappy.txt A simple "Hello World" http SOAP server: import SOAPpy def hello(): return "Hello World" server = SOAP.SOAPServer(("localhost", 8080)) server.registerFunction(hello)