Re: [google-appengine] Can I have two domains associated with one GAE project?

2019-04-09 Thread Qian Qiao
Yes you can. I have apps that have quite a few domains associated and saw no issues. On Tue, 9 Apr 2019 at 03:13, 'Mark Summerfield' via Google App Engine < google-appengine@googlegroups.com> wrote: > Say I have myproject.appspot.com and a domain www.oldsite.com that is > associated with it

[google-appengine] Re: Can I have two domains associated with one GAE project?

2019-04-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Mark, You could associate both both www.oldsite.com, as well as www.newsite.com to yourproject.appspot.com. Procedure to follow in both cases is given on the "Mapping Custom Domains" documentation page .

[google-appengine] Re: Contacts pop-up issue

2019-04-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Luke, Regarding the slow pop-up from Contacts, I imagine you refer to the pop-up that appears when you click one entry from the list of contacts at contacts.google.com. If this is the case, I cannot reproduce the issue: pop-ups are super fast on all browsers. You are right, this is

[google-appengine] Re: SSL issues with Chrome 73.0.3683.86

2019-04-09 Thread ykarout via Google App Engine
Hello, Clearing the cache may solve the issue. But if the issue persists, I recommend posting the error on Stackoverflow as it is better suited for technical issues. You can also report this to the Chrome Team here since

[google-appengine] Re: How long will the original App Engine SDK (Python 2.7) be supported?

2019-04-09 Thread Vitaly Bogomolov
Hi, Mark If Google declare GAE Standard Python 2.7 as immutable (no development and improvement) and available in long term, I will start my new GAE projects at this platform with pleasure. WBR, Vitaly -- You received this message because you are subscribed to the Google Groups "Google App

[google-appengine] Re: What does X-Google-Apps-Metadata: domain=gmail mean?

2019-04-09 Thread ykarout via Google App Engine
Hello Joshua, >From doing some internal research: 1- X-AppEngine-Default-Namespace is the default namespace used by the Namespace API . It is only used for domain-restricted authentication. If your app is available to all

[google-appengine] Re: How do I get a Python37 app working?

2019-04-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Mark, There doesn't seem to be a compelling need to test static content locally. In fact, tutorial "Hosting a static website on Google App Engine" does not list

[google-appengine] How does Codelabs work during the Google I/O extended events ?

2019-04-09 Thread Fagbohun Omotayo
Hello, The Google I/O is happening on the 7th of May 2019, I will like to organise an extended event in my city, During the Google I/O extended event, I learnt there will be a Codelab as part of the agenda, The Codelab is a fun programming exercise. I will like to experiment with different

[google-appengine] Re: encoded keys in the app vs datastore viewer

2019-04-09 Thread dir Ls
I took the key in the datastore viewer and used the google.appengine.ext.ndb.Key(urlsafe=) api and I see it reconstructs the key properly with the kind and id. In addition, I see an app field for the key. But in the golang representation the Key struct doesn't have an app field. So if an app

[google-appengine] Re: I am new to google datastore. Looking at mapping between entities (Java)

2019-04-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Tony, You seem to think along the lines of SQL databases. Cloud Datastore is a highly-scalable NoSQL database for your applications. Entities in a Datastore mode database form a hierarchically structured space similar to the

[google-appengine] Re: API and services - my project with google Drive - imported external accounts fail to access to my project

2019-04-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Marco, You refer to Google Drive and a server that might not be installed on a GCE instance. This discussion group is dedicated to App Engine. For issues related to Google Drive and G Suite, you are better served if posting in the appropriate discussion group, and contacting G Suite

[google-appengine] Re: form sends information but php no run.

2019-04-09 Thread 'George (Cloud Platform Support)' via Google App Engine
At this stage, more detailed information on your app's code is needed, and you project ID, with private details that are better handled in a proper issue tracker . You are encouraged to open an issue in the Public Issue Tracker

[google-appengine] Re: How to prevent sync bucket files from local cloud storage to server

2019-04-09 Thread ykarout via Google App Engine
Hello, Files uploaded to Cloud Storage will be always be written to your bucket on the cloud regardless if done locally or deployed. There is no local environment for Cloud Storage. You can follow this guide to delete objects if

[google-appengine] Re: Adding JSP support to Spring Boot project (java, flex, openjdk8, tomcat)

2019-04-09 Thread ykarout via Google App Engine
Hello Daniel, I recommend posting the full error you are getting along with the other questions on Stackoverflow as it is more suited for technical questions and will have better visibility. Google Groups is better suited for high-level conceptual and general

[google-appengine] Hong Kong GPU Availability

2019-04-09 Thread Derek Jarvis
Is there any documentation or announcement about when GPU instances will be available in each region? I'm specifically interested in an Hourly GPU VM hosted in Hong Kong (or possibly Mainland - but I know that's difficult) -- You received this message because you are subscribed to the Google

[google-appengine] Contacts pop-up issue

2019-04-09 Thread Luke Douglas
0 I am really hoping someone with any sense at Google reads these group chats. I'm not sure this is the group but I could not find one for Google Apps Contacts. Will someone please let the Google Apps development know that WE DESPERATELY NEED the option to use the old, classic Contacts detail

[google-appengine] send data from VM to laptop

2019-04-09 Thread Pengyuan Zhou
Hi, all I'm familiar with the rule setting of GCP VM and could let traffic get through ingress port. However, when I want to send data from the VM to my phone or laptop, even I already have a rule allowing data send to any ip from any egresss port, it still fails. Any idea is

[google-appengine] Re: How do I get a Python37 app working?

2019-04-09 Thread 'Mark Summerfield' via Google App Engine
It seems that it isn't possible to test static files locally, so I'm going to stick with the original Python 2.7 SDK. -- 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

[google-appengine] Can I have two domains associated with one GAE project?

2019-04-09 Thread 'Mark Summerfield' via Google App Engine
Say I have myproject.appspot.com and a domain www.oldsite.com that is associated with it (incl. a security cert. for TLS). Is it possible to _also_ associate www.newsite.com (again with a security cert.) so that both www.oldsite.com _and_ www.newsite.com both map to myproject.appspot.com? --