Its trivial to write small web services in appengine, be they xmlrpc, jsonrpc, simple rest services. (SOAP is a lot harder ;-)
You don't have to have multiple appengine instances. You could easily run a bunch of different services out of the same instance. If you need to make sure individual web services in an instance can't share data then use names spaces. Have a read up on multitenancy http://code.google.com/appengine/docs/python/multitenancy/ Rgds T -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/17114U2h-NsJ. 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.
