Is it possible to make an application which uses two programming language such as java and python together? I mean if there are two services which one of them is in Java and another in Python, what is the simplest way to integrate them ?
Asked
Active
Viewed 207 times
1 Answers
2
Yep, you can use two programming languages in an GAE app using GAE services.
If you want the services to communicate then it would be possible through http requests, task queues. If you want a folder to be available in both the services then create that folder on the project's root directory and do sym-linking inside necessary services.

Community
- 1
- 1

Avinash Raj
- 172,303
- 28
- 230
- 274
-
Thank you, I would like to know if you have a sample project which uses GAR services having two languages in an GAE app. – Majico Apr 20 '17 at 07:50