[google-appengine] Is it possible to build a mixed app in Java & Go?

2012-08-30 Thread Fred Janon
Hi, I would like to start a new app in Go but some of the services are only offered in Java for the moment. I am thinking about writing everything I can in Go and call the other services in Java when not available in Go. Is there a way to have a GAE app with some of the URLs handled by a Go app a

Re: [google-appengine] Is it possible to build a mixed app in Java & Go?

2012-08-30 Thread Barry Hunter
You can deploy different runtimes to different versions of your application. While the non-default versions can have public urls, they use a specific hostname. So in general you would have the default version (possibly in Go), proxy as required to a java application/version. You will of course ne

Re: [google-appengine] Is it possible to build a mixed app in Java & Go?

2012-08-31 Thread Fred Janon
Thanks Barry, the version trick is a good idea. I'll try that with a small prototype. The services in Java would be used internally from the Go app, nothing from the Java app would be exposed publicly, so I would not have to proxy anything, if I understood what you meant. Cheers, Fred On Thu, A