[google-appengine] Re: Flexible Environment deployments are not supported in the apps region 'europe-west'.

2017-03-29 Thread JC Lanoë
I've been asking my sales rep about FE for over a year now. They kept telling me that the "GA" was imminent and that I should be patient. Now that it's in GA but still no availability in Europe, I'm wondering if GAE FE will ever happen. I got some insight from a few Google Engineers at Google Cl

[google-appengine] Re: ETag headers missing (starting 2015-01-10)

2015-01-13 Thread Jc Lanoë
I'm experiencing the same issue. Google claims it works for them but no matter what I do, that etag header gets lost along the way. On Monday, January 12, 2015 at 11:30:39 AM UTC+1, Wolfram Gürlich wrote: > > Is anybody else affected by this strange behavior? > > > Starting from 2015-01-10 ETag r

[google-appengine] Re: Property is corrupt (Unicode Decode Error)

2014-02-11 Thread Jc Lanoë
Hi, I'm having the same issue. Did you find a solution to fix it, or at least access the other properties? Thanks. On Saturday, June 11, 2011 5:06:18 AM UTC-7, ravindra wrote: > > My GAE app sometimes gives the following error. I uploaded all my data > using bulk uploader, but never faced any

[google-appengine] Re: If-Modified-Since HTTP conditional Get header supported in 1.3.1?

2010-03-16 Thread JC
One more info that could be relevant. The mime type is application/x- silverlight-2; the file extension is xap. On Mar 16, 12:04 pm, JC wrote: > I suspect that somehow GAE is not treating the resource as static file > - specifically with its xap file extension. > > I tried setting a

[google-appengine] Re: If-Modified-Since HTTP conditional Get header supported in 1.3.1?

2010-03-16 Thread JC
summary, we have gone over the outside server possibility, the date format issue. The file is not located under WEB-INF directory. All of them don't seem to be the cuase of the issue. Please advise. Thanks, On Mar 16, 10:37 am, JC wrote: > I see what you mean. > > In my case, the

[google-appengine] Re: If-Modified-Since HTTP conditional Get header supported in 1.3.1?

2010-03-16 Thread JC
fetch pages from cnn.com. If cnn.com does not support If-Modified-Since then > you are never getting 304's back, no matter what headers you put in your > request. It has nothing to do with GAE. > > In the example above "server" is cnn.com. > > - alkis > >

[google-appengine] Re: If-Modified-Since HTTP conditional Get header supported in 1.3.1?

2010-03-15 Thread JC
BTW, there is no proxy server in my case if that is what you had in mind. On Mar 15, 11:07 pm, JC wrote: > Are you saying that not all GAE servers running in the Google data > center support If-Modified-Since? Can you elaborate a bit more? The > Java app was deployed to GAE data cente

[google-appengine] Re: If-Modified-Since HTTP conditional Get header supported in 1.3.1?

2010-03-15 Thread JC
('Αλκης Ευλογημένος) wrote: > With server I mean the server you are fetching pages from. That server might > not have support for If-Modified-Since. > > - alkis > > 2010/3/16 JC > > > > > Thanks for the prompt reply! > > > I don't quite u

[google-appengine] Re: If-Modified-Since HTTP conditional Get header supported in 1.3.1?

2010-03-15 Thread JC
hitting does not > support it, or you are sending it a timestamp it doesn't understand. > > - alkis > > > > On Mon, Mar 15, 2010 at 6:28 PM, JC wrote: > > GAE 1.3.1 for Java includes a fix (issue 575) to support conditional > > get for static files. I hav

[google-appengine] If-Modified-Since HTTP conditional Get header supported in 1.3.1?

2010-03-15 Thread JC
GAE 1.3.1 for Java includes a fix (issue 575) to support conditional get for static files. I have tried sending If-Modified-Since Get header to retrieve a static file from GAE, It always returns 200 (with full payload) instead of 304 (unmodified) even though the static file hasn't been changed for

[google-appengine] Logs query

2009-07-29 Thread jc
Is it possible to add an option which can filter by cpu time, that will help on performance analytics. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to g

[google-appengine] Re: Is the Datastore just too slow for 100+ returned records?

2009-01-09 Thread JC
Tzakie, As Dan pointed out, GqlQuery isn't actually fetching the data when constructed. Try this instead: CategoryRows = db.GqlQuery(QueryString) results = CategoryRows.fetch(limit) where limit is the max number of rows to fetch. I believe this will make a single trip the datastore rather than