Re: [google-appengine] Re: Use GAE with GCE connected with Internal IP

2018-04-24 Thread 'Kamran (Google Cloud Support)' via Google App Engine
It is not currently possible to access the internal IP addresses of Compute Engine VMs from App Engine Standard as they are on completely different networks (though this is in the works ). On Monday, April 23,

[google-appengine] Re: Disable TLS/SSL check in Google App Engine - Java

2018-04-24 Thread 'Katayoon (Cloud Platform Support)' via Google App Engine
Apparently, this issue is caused by Java 7 itself only using TLS v1 by default, and you need to explicitly enable v1.2 (JDK 8 uses TLS 1.2 by default ). This behavior is noted by PayPal on GitHub

[google-appengine] Re: FIREBASE INSERT INTO MYSQL

2018-04-24 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Since Firebase Realtime Database is a non-relational database, and MySQL is a relational database, there are no auto-migration tools and you will need to manually read your data from Firebase and then convert it into your custom MySQL schema and write it to your MySQL database. You will need t