I've GAE application which creates some data in the Google Cloud Datastore and stores some binary files into the Google Cloud Storage - let's call the application WebApp.
Now I have a different application running on the Google Cloud Storage Google compute engine. Let's call the application ComputeApp.
Now, the ComputeApp should connect to the Datastore, query for entities created by the WebApp and read related binary file from the Google Cloud Storage. Then the CoumputeApp does some processing over the binary file such is reencoding to different format and store it back to the Cloud Storage and update related entity in the Datastore.
Now let me describe a problem:
How can the ComputeApp communicate with the DataStore? (I use Objectify for that) Only method I found is GAE Remote API for Java. It works when connecting to my WebApp running locally, but it doesn't work when connecting to my WebApp deployed in the GAE. The reason is probably described here. But I donnot know python, so I donnot understand the described solution. Is there any other possible way how my ComputeApp can communicate with the GAE Datastore service?
Thanks a lot!
Edit: I corrected my typo as proppy rightly noted.