[google-appengine] Re: Google Places API wrapper for Java GAE

2012-08-29 Thread Richard Watson
This guy claims to have a first draft of one: http://code.google.com/p/google-places-api-client/ This guy says use the standard Google Java api, with examples: http://ddewaele.blogspot.com/2011/05/introducing-google-places-api.html On Wednesday, August 29, 2012 10:03:35 PM UTC+2, Rahul Tongia w

Re: [google-appengine] Re: Weird Instance Scheduler

2012-08-29 Thread Carl Schroeder
Try making a page that consists of more than a single request to the server. A burst of requests that is served (not static content) under the pending latency time would usually trigger an instance spin-up. Now that spin-up times are back to normal, I am not seeing this behavior nearly as often

Re: [google-appengine] Re: Weird Instance Scheduler

2012-08-29 Thread Jeff Schnitzer
I really do wish I had time right now to help track this down - believe me, this issue is very relevant to my interests! Jeff On Wed, Aug 29, 2012 at 9:07 PM, Takashi Matsuo wrote: > > Jeff, > > Thanks for the suggestion, and probably that's true. I've chosen this test > from Mos's e-mail, beca

Re: [google-appengine] Re: Weird Instance Scheduler

2012-08-29 Thread Takashi Matsuo
Jeff, Thanks for the suggestion, and probably that's true. I've chosen this test from Mos's e-mail, because I got a feeling that he saw odd behaviors even with one request per minute. Hopefully I can do another test based on your suggestion soon. Please note that you can also provide your test re

Re: [google-appengine] Re: Weird Instance Scheduler

2012-08-29 Thread Jeff Schnitzer
This is not a very good test. Better would be: Run 'ab -c 1' against it and see if you get any cold starts. Change 1 to a larger number, up to what concurrency we should expect for a multithreaded instance. Jeff On Wed, Aug 29, 2012 at 6:54 PM, Takashi Matsuo wrote: > > Hi Mos and everyone,

Re: [google-appengine] Python 2.7 and SQLite on Windows 7: unable to open database file

2012-08-29 Thread Bryce Cutt
Hi Robert, I have been digging into it a bit more and I know what is happening, I just don't know why it is happening. I have a temporary solution that does not require running as administrator. I detailed all this on the issue page so it is all in one place. - Bryce On Tuesday, August 28, 2

Re: [google-appengine] Search API Unit Tests

2012-08-29 Thread Jason Galea
removing all the documents at teardown appears to work.. (I only had one test previously so I hadn't noticed the issue..) https://developers.google.com/appengine/docs/python/search/overview#Removing_Documents On Thu, Aug 30, 2012 at 9:12 AM, jeffgnpc wrote: > I didn't see a LocalService object

[google-appengine] facebook scraping the site and showing 'Test Page: Success'

2012-08-29 Thread Blast Radius
We just launched tonight, though the code has been on our default instance for about 24 hours, and we add the URL as a status update in facebook, we see the default success page. When we share with /index.jsp we see the OG meta data. Here's the URL : http://nikeprotraining.sportchek.ca/ Is this

[google-appengine] Google Places API wrapper for Java GAE

2012-08-29 Thread Rahul Tongia
Hi There, I want to use google places API from the service side at my Java appengine and GWT app. It is possible using URLFetch on places web services. Is there anyone who has written a library which converts the JSON response to Java objects. This would save me considerable time in case some

[google-appengine] One-time payment

2012-08-29 Thread Tomáš Turek
Hi, I am wondering whether is it possible to send one-time payment to avoid exceeding free quotas. We have an application implemented by non-profit organization and have a budget which must be used upon a certain day. Is that possible at all? Thanks! Cheers, Tomas -- You received this messa

[google-appengine] Search API Unit Tests

2012-08-29 Thread jeffgnpc
I didn't see a LocalService object for the Search API, so I don't know how to reset the index after unit tests. How are people unit testing their code around Search API? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discus

[google-appengine] Re: MAX_BLOB_FETCH_SIZE value

2012-08-29 Thread Stuart Langley
This is the maximum size that can be fetched in a single call using BlobReader (https://developers.google.com/appengine/docs/python/blobstore/blobreaderclass) - The blob size that can be uploaded by users is effectively unlimited. On Thursday, 30 August 2012 05:05:56 UTC+10, Daniel Hans wrote:

Re: [google-appengine] Re: Weird Instance Scheduler

2012-08-29 Thread Takashi Matsuo
Hi Mos and everyone, I'm trying to reproduce the issue about min idle instance which some of you guys reported here in this thread, saying "Setting min idle instances doesn't work for me". My initial test is just with a simple helloworld Java application multithread enabled, setting 1 min idle in

[google-appengine] Re: Algae - Application Template for Google App Engine

2012-08-29 Thread Christopher Ramírez
Thanks for your contribution Liya! Have all the basics a modern web apps needs, including REST API's. On Tuesday, August 28, 2012 4:06:53 PM UTC-6, Ilya Bagrak wrote: > > While building Turn-O-Phrase (http://turn-o-phrase.com) and LinkPeelr ( > http://linkpeelr.appspot.com) on GAE, I realized tha

[google-appengine] Error connecting to Google Cloud SQL

2012-08-29 Thread Mike
0 down vote favorite I am new to Google App engine and I have tried to run an demo application called guestbook to connect to Google cloud sql from the Google app engine with app-engine-sdk version 1-7.0. But e

[google-appengine] Error connecting to Google Cloud SQL

2012-08-29 Thread Mike
0 down vote favorite I am new to Google App engine and I have tried to run an demo application called guestbook to connect to Google cloud sql from the Google app engine with app-engine-sdk version 1-7.0. But e

[google-appengine] MAX_BLOB_FETCH_SIZE value

2012-08-29 Thread Daniel Hans
Hi there, I have been trying to use MAX_BLOB_FETCH_SIZE to determine maximal size of blobs that may be uploaded by the users. It is documented to be around 32 MB here [0] but the real value is actually less than one megabyte [1]. Could anyone explain the difference to me or it is an issue and

[google-appengine] Using @ElementCollection to persist a Collection of Enum

2012-08-29 Thread roberto_sc
I'm moving from JPA 1 to JPA 2 in my Gooogle App Engine project, and for that I changed the annotations for collections of enums, like this case: // @OneToMany(cascade = CascadeType.ALL) // JPA 1 @ElementCollection(targetClass=PositioningType.class) private List bestPositionings; Pos

Re: [google-appengine] Re: Hosting static files on GAE and using own domain.

2012-08-29 Thread Omne
Thank you all for your replies. I used Eclipse because I had already downloaded it and I started to figure out how to work with it, I didn't want to start again with something new like Python... I simply copied all my website, its files and folders, to "myproject/war" and it was really simpler