Hi everyone! I have a multi-module GAE Application that is structured like this:
- a Python27 module, that is a regular web application. This Python app uses the Datastore API. Regular, boring web app. - a Java module (another web application) that hooks on the Datastore calls (calls made by the Python web app), and displays aggregated data about the recorded Datastore calls. I have been able to deploy this application on the GAE cloud, and everything works fine. However, problems arise when I want to run my application on localhost. The Python module must be started using the Python SDK. The Java module must be started using the Java SDK. However, the 2 SDK's do not seem to share the same datastore (I believe the 2 SDKs write/read to separate files on disk). It seems to me that the 2 SDK's also differ in the advancement of the Development Console implementation. The Python SDK sports a cleaner, more "recent-looking" Development Console (akin to the new console.developers.google.com console) than the Java SDK, which has the old-looking version of the Development Console (akin to the old appspot.com console) So my question is, is there a way to boot 2+ modules (*in different languages: Python, Java*) that share *the same Datastore files*? That'd be nice, since it would allow the Java module to hook on the Python Datastore calls, which does not seem to be possible at the moment. -- 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. For more options, visit https://groups.google.com/d/optout.
