[google-appengine] Re: Google App Engine Laucher extra flags listen to --host 127.0.0.1

2015-07-30 Thread Tasos Kallergis
What do they mean that 127.0.0.1 is a valid ip address and can be used -- 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+unsubscr...@googlegr

Re: [google-appengine] Probability distribution of eventual consistency

2015-07-30 Thread Patrice (Cloud Platform Support)
Hi Jeff, I did some digging around with the datastore team, and turns out this is not in any form that is available publicly. The next best thing I can provide was the answer from the team when I asked for "ballpark", and it was "it should never take more than a few seconds", so I'd say Joshu

[google-appengine] Re: Google AppEngine - Firewall Notification:Your access has been blocked by firewall policy 732

2015-07-30 Thread Patrice (Cloud Platform Support)
Hi Deepak Then the problem is that you cannot hit the "[project].appspot.com", not anything else. If you're deploying on App Engine, there is no reason the system throws out a URL fetch from the domain. I'd really ask to your network administrator about the firewall you have up, because I beli

[google-appengine] Uploading a file using a form in the Google App Engine to a static URL is it possible

2015-07-30 Thread Matthew Rappard
I just want to know if it's possible to make the following HTML code, work with the Google App Engine. I.E. this form will upload a file to a "STATIC" address that is stored in the Google App Engine. It can't be dyanmic it has to be the same URL across all devices. Application name: App

Re: [google-appengine] Uploading a file using a form in the Google App Engine to a static URL is it possible

2015-07-30 Thread Barry Hunter
Yes, that sort of functionality can be implemented on AppEngine The blobstore provides much of the functionality. But there are other ways Eg uploading a blob https://cloud.google.com/appengine/docs/python/blobstore/#Python_Uploading_a_blob Once uploaded, can 'serve' the blob https://cloud.googl

Re: [google-appengine] How long to wait for submitting a request for additional email quota

2015-07-30 Thread Venkat Yuvaraj
Hi, I am still waiting for the quota increase.. It is 2 weeks past.. Should I wait longer or any email I should send ? I have submitted the email quota request and provided the justification. -V On Thursday, July 31, 2014 at 4:32:39 PM UTC-7, Ryota Yamada wrote: > > Finally, I have permission to

[google-appengine] PSA: you don't need docker installed to run or deploy managed VMs

2015-07-30 Thread pdknsk
Read from comment #9 onwards. https://code.google.com/p/google-cloud-sdk/issues/detail?id=163#c9 -- 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-app

Re: [google-appengine] Uploading a file using a form in the Google App Engine to a static URL is it possible

2015-07-30 Thread Matthew Rappard
Okay so my thing is Blobstore works by creating a dynamic that you call via blobstore.create_upload_url() which would be great, if I could get the dyanmic URL but I can't hence the need for a static URL. On Thursday, 30 July 2015 11:29:14 UTC-4, barryhunter wrote: > > Yes, that sort of functi

Re: [google-appengine] Uploading a file using a form in the Google App Engine to a static URL is it possible

2015-07-30 Thread Barry Hunter
So your problem is that create_upload_url creates a long, verbose url. One not repeatable? You want a nice simple 'endpoint' to upload to? could directly handle the POST yourself in a dynamic handler (accept the uploaded file directly) http://stackoverflow.com/questions/25645253/python-parsing-mu

Re: [google-appengine] Uploading a file using a form in the Google App Engine to a static URL is it possible

2015-07-30 Thread Matthew Rappard
The issue is that the URL becomes inactive after X amount of time, as well as the code I sent is really just a proxy for what a C++ library is doing. I don't really need it in the Google App engine, I just need to be stored somewhere so even turning it into an email attachment and mailing it wou

Re: [google-appengine] Uploading a file using a form in the Google App Engine to a static URL is it possible

2015-07-30 Thread Barry Hunter
> > I don't really need it in the Google App engine, I just need to be stored > somewhere so even turning it into an email attachment and mailing it would > be fine. > > The code > > class CrashUploader(webapp2.RequestHandler): > def post(self): > file_data = self.request.get("crashrpt"

Re: [google-appengine] How long to wait for submitting a request for additional email quota

2015-07-30 Thread Patrice (Cloud Platform Support)
Hi Venkat, Sending another email won't do much good. As you see from Ryota, it can take up to 4 weeks. As Vinny pointed out, the 1-2 weeks is the usual timeframe, it can take longer. Cheers On Thursday, July 30, 2015 at 11:48:52 AM UTC-4, Venkat Yuvaraj wrote: > > Hi, > I am still waiting for

Re: [google-appengine] How long to wait for submitting a request for additional email quota

2015-07-30 Thread support
Okay — Thank you Patrice…. do you know how much they will increase? but will wait longer to see if I get any happy news. appreciate your help!- -Venkat On Jul 30, 2015, at 9:48 AM, Patrice (Cloud Platform Support) wrote: > Hi Venkat, > > Sending another email won't do much good. As you see f

Re: [google-appengine] Uploading a file using a form in the Google App Engine to a static URL is it possible

2015-07-30 Thread Matthew Rappard
If anyone is following here code that is working class CrashUploader(webapp2.RequestHandler): def post(self): attachments = self.request.POST.get('crashrpt') entity = DatastoreFile(data=attachments.value, mimetype=attachments.type) entity.appname =self.request.get('app

Re: [google-appengine] How long to wait for submitting a request for additional email quota

2015-07-30 Thread Patrice (Cloud Platform Support)
Hi Venkat, If I remember correctly, when you fill the form, you provide a number for the number of emails you want. I will assume that this is what will be granted? I don't have visibility over the request you made so I can't tell you when it'll be done unfortunately. In the meantime you could

Re: [google-appengine] Probability distribution of eventual consistency

2015-07-30 Thread Nick
What about consistency in undocumented services, such as the search API, or querying pull queues by tag? What would the team say the timeframes for those are? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group

[google-appengine] Re: Google AppEngine - Firewall Notification:Your access has been blocked by firewall policy 732

2015-07-30 Thread Deepak Kumar
Hi Patrice, It looks like, still the question is not clear. I can hit [project]. appspot.com. As per my last example, 1. I access to http://google.appspot.com from my browser 2. http://google.appspot.com internally access to http://google.com Google AppEngine app can not hit http://google.com.

[google-appengine] App Failed to load

2015-07-30 Thread Jukka Hautakorpi
'm testing my gae / php / sql app and was using my mobile phone samsung gs 3. I have made a app shortcut to my home screen where i use to lauch the app. And also use it from pc chrome browser, but in this case i was not around my pc. Didn't update the app in many days now and jul 27. was really

[google-appengine] App Failed to load

2015-07-30 Thread Jukka Hautakorpi
Im testing my gae / php / sql app and was using my mobile phone samsung gs 3. I have made a app shortcut to my home screen where i use to lauch the app. And also use it from pc chrome browser, but in this case i was not around my pc. Didn't update the app in many days now and jul 27. was really

[google-appengine] Dropped support for OpenID 2.0

2015-07-30 Thread Ice13ill
I've recently seen this post https://cloud.google.com/appengine/docs/deprecations/open_id saying that Google App Engine will drop support for OpenID 2.0 (Users API). I would like to know if this applies only to Google login or all support for all federated login providers will be dropped, inclu