[google-appengine] Re: Google Cloud Libraries for Appengine Standard

2018-02-06 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Other than the fact that the new Google Cloud Client Libraries are mostly currently in Beta, it is actually recommended to use the new Client Libraries (as it is also now

[google-appengine] Framework Recommendations for AppEngine Java8 Standard

2018-02-06 Thread Eric Martineau
When we started building AppEngine Java7, the community recommendation and examples were centered around using Guice+Jersey. Despite having a long history with SpringBoot, our company invested in Guice/Jersey infrastructure for AppEngine. Since the release of java8, there are a few

[google-appengine] Google Cloud Libraries for Appengine Standard

2018-02-06 Thread Eric Martineau
Java8 opened up the possibility of using google-cloud-java (grpc) libraries within AppEngine standard. The newer libraries are nicer to work with from a development standpoint, but I'm not sure if there are any significant drawbacks to using them within AppEngine Standard. Can anyone provide

[google-appengine] Re: Feedback on App Engine Task Queue

2018-02-06 Thread Shaharia Azam
You have to set DB_HOST to null because you have to mention either DB HOST or DB SOCKET. And what driver you used as your cache driver? MySQL or file system? On Sunday, December 24, 2017 at 11:15:01 PM UTC+6, Ravi Shanker wrote: > > Hello, > > One of our client I suggested to use AppEngine but

[google-appengine] Re: PCI compliance

2018-02-06 Thread Shaharia Azam
James, >From my experience, if you are answering some ready-made questionnaire from your PCI compliance certification body, I know that's little bit confusing. But I would suggest, you reach to that certification body's support executive and tell them about your APP. Because most of the PCI

[google-appengine] Re: Picture tagging and uploading to Database

2018-02-06 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Henk, What you desire is certainly attainable. As in similar cases, there is more than one solution possible, so you have a wealth of choices at your disposal. To store your images you may use Datastore and Cloud Storage in conjunction, where the storage it meant to store the actual

[google-appengine] Re: Picture tagging and uploading to Database

2018-02-06 Thread Ani Hatzis
Hello Henk, you could also use other GCP products to achieve this workflow, but considering your work-load peaks and the described use-cases App Engine could be a good platform choice. Here comes the shooting :) *Incoming emails* I'm not sure what caveats come for copy of images between

[google-appengine] Picture tagging and uploading to Database

2018-02-06 Thread Henk Troost
Hi all, I'm new to the forum so i will just shoot. Simple question: is what i am asking for possible? If yes: which way should i be looking? I have been googling and searching for ways to upload images to a database and came across google app engine. The background For my business

[google-appengine] Understanding threads and task queues

2018-02-06 Thread Johann Blake
In my GAE app I need to perform an OAuth2 flow by passing an authentication code to a Google endpoint in order to retrieve a user's profile. As part of this process, I also need to store the user's email address in GAE Datastore. The following points have been documented about GAE and Java 8: