[google-appengine] Using other code in a backend

2011-09-26 Thread Hans Then
Hi all,

Is it possible to create a backend containing another program than the
main instance? Specifically, is it possible to create a backend using
a different programming language e.g. Java in the backend and Python
in the main instance?

Regards,

Hans Then

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Using other code in a backend

2011-09-26 Thread Greg Darke (Google)
Yes it is quite easy to do. The easiest way is to create a separate
directory containing the code for the backend, then just upload the
backend (be sure to not accidentally upload the code over your default
version).

Though be careful with configuration that is not scoped to a specific
version: indexes, queues, cron, dos. You should ensure that you
specify the same information in the configuration for both languages.

Testing a solution that uses multiple languages can be quite difficult
(and is generally easiest to test the application by deploying to a
test app-id).

On 27 September 2011 04:54, Hans Then  wrote:
> Hi all,
>
> Is it possible to create a backend containing another program than the
> main instance? Specifically, is it possible to create a backend using
> a different programming language e.g. Java in the backend and Python
> in the main instance?
>
> Regards,
>
> Hans Then
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Google App Engine" group.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to 
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/google-appengine?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.