Re: [google-appengine] Re: SSL support

2014-03-07 Thread GAEfan
> > Just to follow up, 1.75 years later... > > Year to date, via analytics: > > 64% of our visitors use Windows > 13% of those use XP > 31% of those use IE > > So, that equals 2.6% of our visitors. 4% of our visitors use Android, of > various versions. I am not sure which version, if any, fixed

Re: [google-appengine] Re: SSL support

2014-03-07 Thread GAEfan
Just to follow up, 1.75 years later... Year to date, via analytics: 64% of our visitors use Windows 13% of those use XP 31% of those use IE So, that equals 2.6% of our visitors. 4% of our visitors use Android, of various versions. I am not sure which version, if any, fixed the SNI certificat

Re: [google-appengine] White Page after Redirect?

2014-03-07 Thread Benjamin Lietzau
I will try. At the moment it works... Am Donnerstag, 6. März 2014 21:49:11 UTC+1 schrieb Vinny P: > > On Thu, Mar 6, 2014 at 8:19 AM, Benjamin Lietzau > > > wrote: > >> There is a form with the action >> "BlobstoreServiceFactory.getBlobstoreService().createUploadUrl("/save")" >> The servlet sti

[google-appengine] Re: Configuring SSL for custom domain failing with error 1000

2014-03-07 Thread Hugo Visser
OK, sorry to spam you all, but apparently it took 10 minutes or so since now SSL appears to be working fine. On Friday, March 7, 2014 1:57:18 PM UTC+1, Hugo Visser wrote: > > OK, to follow up: I removed the SSL billing and enabled it again. Then the > error was gone. However, now a different pro

[google-appengine] Re: Configuring SSL for custom domain failing with error 1000

2014-03-07 Thread Hugo Visser
OK, to follow up: I removed the SSL billing and enabled it again. Then the error was gone. However, now a different problem occurs in that I can't get my RapidSSL certificate working. I've included the issued certificate + all of the intermediate certificates in the chain. When the certificate

[google-appengine] urlfetch.fetch() does not respect deadline/timeout param

2014-03-07 Thread Haisheng HU
What I've tried out includes: 1) req = urllib2.Request(url, data) try: f = urllib2.urlopen(req, timeout=60) 2) urlfetch.set_default_fetch_deadline(60) 3) r = urlfetch.fetch(url, payload=data, method='POST', deadline=60) None of these worked. I always get a timeout exception after 10 seconds.