Re: [google-appengine] [Python] Endpoints vs ProtoRPC ~200ms overhead

2013-04-17 Thread alex
Great news! Yeah, of course, I wouldn't expect Endpoints to be as fast either but I think it's really worth it. Thanks! On Wed, Apr 17, 2013 at 11:15 PM, Dan Holevoet wrote: > Hi Alex, > > No, I don't think you're doing it wrong. Your post encouraged me to find > out the results of our intern

Re: [google-appengine] Re: Webpages are not updating properly after a datastore operation performed

2013-04-17 Thread Nijin Narayanan
>>Are you using AJAX, or a generated page? It is a Generated Page. This issue was seen from the SDK 1.7.6. Before that it was worked perfectly. >> If generated, you're probably generating the new page before the write/index update completes. The Page is redirecting after the datastore operation

[google-appengine] Re: Should I Implement the Search API?

2013-04-17 Thread Bryce Cutt
Jason, Have you thought of using transactional tasks to update the search index? Or are you more concerned with concurrent updates to the same model? - Bryce On Wednesday, April 17, 2013 3:08:05 PM UTC-7, Jason Collins wrote: > > We've been doing a fair amount of work with Search API lately. S

[google-appengine] Re: Djangoform not supported anymore for python2.7, Any recommendation for replacement

2013-04-17 Thread Bryce Cutt
djangoforms ModelForm is the same as the regular Django form class (django.forms.Form) but with additions that allow it to interact with datastore models. If you want to keep most of your form code and only have to update any of the GAE model specific stuff you do you can just include the lates

[google-appengine] Google App engine looks down

2013-04-17 Thread Satyanarayana Govindachandra
Hi , My all apps running on Google App engine are behaving Odd, the Data is not being pulled from Datastore, instead it throws exception org.datanucleus.jdo.NucleusJDOHelper getJDOExceptionForNucleusException: Exception thrown Apps Status Dashboard shows that many service of Google are down toda

[google-appengine] Re: Should I Implement the Search API?

2013-04-17 Thread Kaan Soral
Don't know if it would apply to your scenario but it might be a good idea to update search documents only when the datastore element changes significantly or gets removed. In my scenario syncing isn't an issue, however the document rank would change proportionally to the custom rank of the item

[google-appengine] Re: Should I Implement the Search API?

2013-04-17 Thread Jason Collins
We've been doing a fair amount of work with Search API lately. Some of the current challenges seem to be around operations aspects. E.g., we're trying to keep the search documents in sync with datastore entities. Because transactions don't extend across datastore and search indexes, they can get

[google-appengine] Re: Sockets or Apple Push Notification support in Google App Engine

2013-04-17 Thread Kaan Soral
Well, thanks a lot for sharing this. If I don't recall incorrectly, apple's apns was accepting multiple push notification's at a time, and they were encouraging those push's to be sent in batches, I also remember reading that, if you push many items one by one, the calls were blocked. Anyone ex

Re: [google-appengine] [Python] Endpoints vs ProtoRPC ~200ms overhead

2013-04-17 Thread Dan Holevoet
Hi Alex, No, I don't think you're doing it wrong. Your post encouraged me to find out the results of our internal analysis, which came up similar to what you were seeing. The good news is that there are a few different efforts underway to chip away at the latency total. I can't give specifics, but

[google-appengine] issue on panorama image which have gpano xmp metada

2013-04-17 Thread Naveen Mamidala
Hi, We are working on panorama image, in this we are storing panorama image in google app engine. And this image will upload from mobile client, this image has gpano metadata.Actually this image will send to server, responsible of server is it have to save that pano image into google app eng

[google-appengine] Re: Disabling chunked transfer for blobstore requests

2013-04-17 Thread Erwann Robin
Hello Adrian, Have you find a way to disable chunked transfer for blobstore ? I have the same issue : I would like to know the total size of the file I am downloading so I could show a nice progress bar download indicator. Cheers, Erwann Le mercredi 7 avril 2010 04:28:56 UTC+2, Adrian Holov

[google-appengine] Looking to Host my site on google app engine

2013-04-17 Thread Looking for Help
Hello Masters, I am very new and a non technical person. I want to host my site defensivedrivingcourseonline-texas.com on google app engine. Done required changes like adding CName but would not map my domain. Please help me in setting thing right. Thank You in advance. -- You received th

Re: [google-appengine] Re: Error code 202

2013-04-17 Thread Dmitry Ulyanov
Was the internal issue resolved? We are experiencing the same problem with Java / HRD / app id - dev-electionear-d4-hrd Thanks, Dmitry On Thursday, March 8, 2012 9:51:37 AM UTC-8, Amy Unruh wrote: > > > On Thu, Mar 8, 2012 at 8:40 AM, Amy Unruh > > wrote: > >> For those of you seeing these erro

Re: [google-appengine] Re: Google App Engine SDK 1.7.7 is now available!

2013-04-17 Thread husayt
Hi, is there any progress on releasing an update for 1.7.7? This issue with jar splitting is stopping us from switching to 1.7.7. Thanks. On Thursday, 11 April 2013 19:45:42 UTC+1, Takashi Matsuo (Google) wrote: > > On Thu, Apr 11, 2013 at 10:49 AM, Ludovic Champenois > > > wrote: > >> Hi, >

[google-appengine] Djangoform not supported anymore for python2.7, Any recommendation for replacement

2013-04-17 Thread Peter Chen
Hi, I have a very large application hosted on google appengine which uses many djangoforms. Since now djangoform is not supported by google appengine anymore, I need to replace all of them, but I really don't want to, because there are so many of them. Is there any way I can put the djangoform

[google-appengine] Re: Having a problem accessing Remote API for Java via proxy

2013-04-17 Thread srikanth ande
Hi Moga, Even i am facing the issue now. Did you get any solution for this issue? On Wednesday, 21 November 2012 10:10:18 UTC+5:30, moga wrote: > > I am writing a program to access from a client environment to Remote API. > However, the remote access via proxy server is not working properly. >

[google-appengine] Re: Sockets or Apple Push Notification support in Google App Engine

2013-04-17 Thread GR
Here's a sample project that can use sockets on App Engine to send out push notifications on ios: https://github.com/GarettRogers/appengine-apns-gcm On Monday, February 13, 2012 11:42:43 AM UTC-8, Giant Fighting Robot wrote: > > I have outgrown the 3rd party options for push notifications to App

[google-appengine] Should I Implement the Search API?

2013-04-17 Thread Kaan Soral
I haven't even considered reading the Search API documents up until yesterday, the production limitations of the Search API made me consider it as a non-existent feature. However it seems a lot of time has passed since it was first introduced and after reading the documents, I really really wan

[google-appengine] Measuring code coverage of Google App Engine Apps (Java) using EclEmma

2013-04-17 Thread Damith C Rajapakse
In case anyone is interested, this is how you can use EclEmma code coverage tool with GAE/J apps. The same content also available in this GoogleDoc . ---

Re: [google-appengine] Re: AppEngine and Adwords Api

2013-04-17 Thread Raphael André Bauer
On Tue, Apr 16, 2013 at 11:15 PM, Vinny P wrote: > From your StackOverflow post: >>It breaks in production - for instance: java.lang.SecurityException: >> java.lang.IllegalAccessException: Reflection is not allowed on private >> javax.xml.ws.wsaddressing.W3CEndpointReference$Address >> javax.xml.w