Reputation: 3704
I am wondering about GAE possibilities and multi-client support; so the question is can GAE support multi-client app; for example, I have war files as
may GAE make such kind of project possible; if yes how to set controller servlet? thanks
Upvotes: 0
Views: 108
Reputation: 8471
You could use the Remote API to access another app's datastore. See here: http://code.google.com/appengine/docs/java/tools/remoteapi.html#Configuring_Remote_API_on_an_App_Engine_Client
Upvotes: 1
Reputation: 4407
Technically each App runs in a sandboxed environment so one app (WAR File) would not be able to access other's datastore directly. You might have to expose services/integration points to get that done. If your needs is a multi client application (multitenancy), you could use Namespace API in GAE
Upvotes: 1