[google-appengine] Re: Deployment issues

2016-03-29 Thread Mayank Bhagya
Thanks Nick. It is to be expected that errors will occur when dealing with any software > product which is beta (such as gcloud). As well, in a distributed (cloud) > computing environment, connection issues are a fact of life, even for the > best-intentioned developers and companies, and it's

[google-appengine] http 204 status on static files

2016-03-29 Thread John Flint
I am getting a 204 status in the logs of my application for some static files (CSS, JS etc). It is not every request and seems quite random. The logs do show a response is being returned and reports a response size. As far as I can tell from my browser the response is actually normal apart from

[google-appengine] Re: Too many instances being launched!

2016-03-29 Thread Edward Sentongo
I have updated this issue https://code.google.com/p/googleappengine/issues/detail?id=12798 with evidence based on screenshots and exported billing analysis as was requested. There are still inconsistencies with the frontend instances in some apps (thus, NOT all apps). On Thursday, March 3,

[google-appengine] Re: Tardy? Porting to new platform version?

2016-03-29 Thread Christian F. Howes
note that last week google changed console.developers.google.com to redirect to https://console.developers.google.com/apis/library which is not what i am expecting. you probably want to verify that https://console.cloud.google.com allows you to load your project. cfh On Tuesday, March 29, 201

[google-appengine] Re: Google App Engine “Error parsing ./app.yaml: Unknown url handler type”

2016-03-29 Thread 'Zeehad (Cloud Platform Support)' via Google App Engine
Hello Feng, It looks like you've found the answer. For this thread's sake, your handler needs to be corrected to: handlers: - url: /.* secure: always Cheers! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this gro

[google-appengine] Re: billing account suspended

2016-03-29 Thread 'Zeehad (Cloud Platform Support)' via Google App Engine
Hello Satish, When the free trial ends, your billing account is suspended. You'll need to upgrade to a paid account in order to continue using the paid services the free trial credits may have been covering until now. See what ha

[google-appengine] Looking for SalesForce Apex Developer

2016-03-29 Thread Manu Priya
*Job Title: SalesForce Apex Developer with *FedEx Client *Location: *Memphis, TN *Term:* 11 months Look for previous FedEx. 2 openings for APEX Developers with strong APEX development and configuration (system admin experience) skills. - Strong APEX development/configuration. Tableau, an

Re: [google-appengine] anyone went to google's gcpnext event?

2016-03-29 Thread George-Cristian Bîrzan
On 23 March 2016 at 23:47, 'Alex Martelli' via Google App Engine < google-appengine@googlegroups.com> wrote: > > So much new GAE stuff being announced at this Next conference should > I've tried looking for _any_ new GAE stuff being announced but have failed. What new GAE stuff was announced at

[google-appengine] Re: Problems uploading images from GAE app using gcloud library.

2016-03-29 Thread 'Nick (Cloud Platform Support)' via Google App Engine
I believe I've figured out what is happening here * On Tuesday, March 29, 2016 at 2:34:37 PM UTC-4, Nick (Cloud Platform Support) wrote: > > Hey Juan, > > I believe I've figured out what When running in development, packages > installed to your python system can appear to resolve dependencies. T

[google-appengine] Re: Tardy? Porting to new platform version?

2016-03-29 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Nick, This sounds like something that could get a quick solution if filed in the Public Issue Tracker . You should capture a HAR recording of the browser interaction and explain what

[google-appengine] Re: Google App Engine “Error parsing ./app.yaml: Unknown url handler type”

2016-03-29 Thread Feng Zhou
find answer here: https://cloud.google.com/appengine/docs/flexible/nodejs/configuring-your-app-with-app-yaml -- 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

[google-appengine] Google App Engine “Error parsing ./app.yaml: Unknown url handler type”

2016-03-29 Thread Feng Zhou
I am trying to redirect http to https after I upload ssl certificate for my custom domain by patching app.yaml file with: handlers: - url: /* secure: always “Error parsing ./app.yaml: Unknown url handler type” returned when I deploy. I am using node on app engine. Any ideas? Thank you. -- You

[google-appengine] Re: Problems uploading images from GAE app using gcloud library.

2016-03-29 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Juan, I believe I've figured out what When running in development, packages installed to your python system can appear to resolve dependencies. These will be absent in production for the reason that only your app's folder is uploaded, not all the python packages on your system. For this r

Re: [google-appengine] Re: Geo information from Traces

2016-03-29 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Ah yes, the X-AppEngine headers, my old friends. This is indeed the correct solution, and can be accessed in every runtime. On Tuesday, March 29, 2016 at 1:12:08 PM UTC-4, Sandeep Dhameshia wrote: > > thanks for the pointer guys, I'll check it out! > On Mar 29, 2016 10:39 PM, "Mihail Russu" <*@r

Re: [google-appengine] Re: Geo information from Traces

2016-03-29 Thread Sandeep Dhameshia
thanks for the pointer guys, I'll check it out! On Mar 29, 2016 10:39 PM, "Mihail Russu" <*@russu.net> wrote: > Have you looked at X-AppEngine-Country & X-AppEngine-City request headers > > that > contain this inform

[google-appengine] Re: Geo information from Traces

2016-03-29 Thread Mihail Russu
Have you looked at X-AppEngine-Country & X-AppEngine-City request headers that contain this information on every request received by your app? On Tuesday, March 29, 2016 at 9:03:53 AM UTC+3, Sandeep Dhameshia wrot

Re: [google-appengine] Re: Geo information from Traces

2016-03-29 Thread PK
These can be accessed as HTTP Headers as documented for python here: https://cloud.google.com/appengine/docs/python/requests in the section “App Engine Specific Headers” I expect that ss long as you warn your users in your T&C/Privacy Po

[google-appengine] Re: Geo information from Traces

2016-03-29 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Sandeep, Excellent question. I've just noticed this feature after checking at your advice. I'll report back to this thread with information, if possible, on how to replicate the same within your code. There are geolocation APIs and libraries out there, but I'll see if I can shed some light

[google-appengine] Re: The SSL certificate provided could not be inserted

2016-03-29 Thread Feng Zhou
Before I run these two command, I upload .crt and .key file. But actually these two files need format change to .pem file although they looks same in editor before/after format change. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To un

[google-appengine] Re: The SSL certificate provided could not be inserted

2016-03-29 Thread 'Nicholas (Google Cloud Support)' via Google App Engine
Thanks for providing the solution here publicly. Would you mind mentioning what you were doing differently before so that others may better understand the solution your found? On Monday, March 28, 2016 at 4:14:07 PM UTC-4, Feng Zhou wrote: > > > I use google app engine trying to add ssl for cust

[google-appengine] Re: The SSL certificate provided could not be inserted

2016-03-29 Thread Feng Zhou
Thanks your answer. The problem solved. I searched online and find answer at stackoverflow: openssl rsa -in privateKey.key -text > private.pem openssl x509 -inform PEM -in www_mydomain_com.crt > public.pem These 2 command helps. -- You received this message because you are subscribed to the Goog

[google-appengine] Re: The SSL certificate provided could not be inserted

2016-03-29 Thread 'Nicholas (Google Cloud Support)' via Google App Engine
Thanks for posting your issue here. - Can you provide a screenshot of this error? - Do you get a different error message when pasting the contents of the files directly in their respective text boxes? - Does your certificate and key meet all of the requirements

[google-appengine] Re: Deployment issues

2016-03-29 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Mayank, I'm sorry that you found my comments unhelpful. I'll try to clarify: It is to be expected that errors will occur when dealing with any software product which is beta (such as gcloud). As well, in a distributed (cloud) computing environment, connection issues are a fact of life, even

[google-appengine] Problems uploading images from GAE app using gcloud library.

2016-03-29 Thread Juan Antonio Fernández Sánchez
I'm trying upload images to a bucket in Cloud Storage from an app in GAE and I can't find the way to do this. I don't have problems when I try do this with a simple program written in python using the library gcloud, this work fine and I can see the pictures in a bucket with the web console but

Re: [google-appengine] You do not have permission to modify this app (app_id=u'XXX').

2016-03-29 Thread Rene Dekker
Thanks Robert Kluin, > > I was able to resolve this issue by deleting the .appcfg_oauth2_tokens_java file. This is probably the java equivalent of the file you mentioned. René -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe