Ken, it's possible to run a multi-module Java Appengine app, with your first module running in the classic GAE "sandbox", and the 2nd module running a managed VM, and through a login:admin setting in your app.yaml configuration or similar, you can lock it down so that only your other Appengine module can access it, and so that it's hidden from public. Check out this article <https://cloud.google.com/appengine/docs/java/managed-vms/> for more Java-specific details. (When at least one of your modules is running GAE Java) Check out this sample code <https://github.com/GoogleCloudPlatform/appengine-modules-sample-java> for info on running multi-module Appengine apps.
And when you run gcloud preview app run <module1> <module2>, make sure to specify the prebuilt war directory of your GAE Java app. Regards, Avanish On Wednesday, February 11, 2015 at 9:40:06 PM UTC-8, Ken Bowen wrote: > > I have a moderate-sized AppEngine java app running in the classic GAE > "sandbox". It makes a few calls out to non-GAE systems to perform > processing that can't be done in the sandbox (e.g., calls involving AWT). > Now I'd like to explore running it as a single module on a GAE managed VM > over Linux, changing those external calls to local, but still using the > DataStore. My problem is that I'm confused as to how to set up a GAE > managed VM. When I go to my Developers Console ( > console.developers.google.com/project) and click "Create Project", I > don't see any options for a GAE managed VM. Can anyone point me in the > right direction to get started? > Thanks, > Ken Bowen > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/90c26578-5ce5-4d5e-91e9-8cc6bfb1c6d3%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
