user592704
user592704

Reputation: 3704

GAE and multi-client app

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

Answers (2)

Moishe Lettvin
Moishe Lettvin

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

Vishal Biyani
Vishal Biyani

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

Related Questions