[google-appengine] Re: Google App Engine trying to access dev data

2013-08-29 Thread Andrew Free
I guess --default_partition was removed in the new SDK, doesn't help but at least explains why that would not work. -- 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

Re: [google-appengine] Webapp2 GAE storing an object, redirecting, querying an object returns null?

2013-08-29 Thread Brian Michelich
The User is created as an entity group but not doing an ancestor query in the User.by_name() https://developers.google.com/appengine/docs/python/datastore/structuring_for_strong_consistency On Tue, Aug 27, 2013 at 8:52 PM, Charlie Crawford wrote: > All, > > I am desktop developer in the proces

Re: [google-appengine] deploy jsp project in google app engine

2013-08-29 Thread Brian Michelich
The getting started docs take you through a simple application and deployment to appengine https://developers.google.com/appengine/docs/java/gettingstarted/introduction On Wed, Aug 28, 2013 at 12:51 PM, ARJUN K P wrote: > i am create a jsp ( 2 page project). > how to i deploy that project in Goo

Re: [google-appengine] GAE/J instances not shutting down as expected

2013-08-29 Thread Cesium
Check this out. New scheduler behavior is sweet, starting at about 1.25 days ago. > > And here's the memory usage.

[google-appengine] delete entities from datastore after client rtrieve it correctly

2013-08-29 Thread giuseppe giorgio
i'm writing a SOAP web service that store in datastore some data and have a service for retrieve stored data. Now i would that, after client invoked the service and data are received correctly, delete it from datastore. I was thinking to implement another service to be called after data recover

[google-appengine] Migrating to Python 2.7

2013-08-29 Thread Kim Jae
I found an interesting tutorial here and followed it. http://eixerits.wordpress.com/2013/07/20/python-2-7-migration-demystified/ however, I have encountered some problems. I tried to deploy the my app and I got an error message: 2013-08-29 21:29:28 Running command: “['C:\\Python27\\pythonw.ex

Re: [google-appengine] Migrating to Python 2.7

2013-08-29 Thread Vinny P
Are you indenting your YAML lines correctly? Based on the file you pasted, I don't see any indentation. YAML is similar to Python in that it requires developers to indent lists/properties. Use spaces when indenting, not tabs. See http://yaml.org/spec/1.2/2009-07-21/spec.html#id2576668 --

Re: [google-appengine] deploy jsp project in google app engine

2013-08-29 Thread Vinny P
On Wed, Aug 28, 2013 at 12:51 PM, ARJUN K P wrote: > i am create a jsp ( 2 page project). > how to i deploy that project in Google app engine? > If you've already created the JSP files, you can upload them to App Engine using the appcfg tool. See https://developers.google.com/appengine/docs/jav

[google-appengine] Re: Finding all the locations in a given radius with GQL

2013-08-29 Thread Jim
Ranjeet, I don't think you can do a radius search with GQL, unless they've added functionality since I was building code for doing spatial queries a couple of years ago. I wound up using the Geo Hash technique which doesn't provide a radius search but does let you search in bounding rectangles.

Re: [google-appengine] Cloud Storage handle missing the backup info.

2013-08-29 Thread Ryan Huebsch
I've updated the issue on the tracker with more details on how to determine the handle. If you have further questions, just let us know on the tracker. On Tue, Aug 27, 2013 at 11:06 PM, Aswath Satrasala < aswath.satras...@gmail.com> wrote: > My appid accountingguru-india. I am trying the second

[google-appengine] parsererror during query.fetch(1)

2013-08-29 Thread Hiro
Good day everyone! I 'm pretty new to Appengine, and trying solve a GQL problem for days. the query.fetch works fine locally, but parsererror on the real server. first I have a mail class * class Mail(db.Model):* and i store the mail address this way * mail = Mail( key_name = mail_addr )* * mai

[google-appengine] Re: Finding all the locations in a given radius with GQL

2013-08-29 Thread Jason Collins
In this past, we've used a repeated property to encode a Quadtree (http://en.wikipedia.org/wiki/Quadtree) at varying levels of granularity. Then you can leverage an IN query against the repeated property to get a good approximation to the radius query. j On Thursday, 29 August 2013 10:23:16 UT

[google-appengine] Broken blobstore files - what to do?

2013-08-29 Thread Alex Burgel
I've noticed a bunch of images that my users have uploaded to blobstore are inaccessible. When I try to view the file in the dashboard Blob Viewer, I get a 500 error. I can't download or access the data in any way. I've filed a production issue on this but have not heard back. I've only recent

Re: [google-appengine] Re: Finding all the locations in a given radius with GQL

2013-08-29 Thread Vinny P
On Wed, Aug 28, 2013 at 7:26 AM, Ranjeet sengar wrote: > Im developing an application where I store location information in the > datastore.Im trying to fetch all the points (lat,long) within a specified > radius of a given point. > Similar to this > stackoverflow

Re: [google-appengine] Re: Finding all the locations in a given radius with GQL

2013-08-29 Thread bFlood
the AppEngine SearchAPI has decent geo search support, just make sure to send lat/lon values with enough accuracy or the results may be off Location-Based Queries (Geosearch) (near the bottom) https://developers.google.com/appengine/training/fts_adv/lesson1 cheers brian -- You received this me

Re: [google-appengine] Can't integrate GCS to existing AppEngine project

2013-08-29 Thread Vinny P
On Wed, Aug 28, 2013 at 1:14 AM, Denis Sigov wrote: > I tried another project without billing but got the same error when tried > to create a bucket. > When you tried another project, was that a project created by the "New Project" button on the Google Cloud Console, or by integrating an App En

Re: [google-appengine] Re: Finding all the locations in a given radius with GQL

2013-08-29 Thread Kaan Soral
I wonder how Search API's geo search works My previous understanding was: It fetched ~1000 results into internal memory, and sorted that batch according to geo query, however the link you sent lead me to believe that it is actually indexing/querying for geo-location (so I thought the purpose of

Re: [google-appengine] delete entities from datastore after client rtrieve it correctly

2013-08-29 Thread Vinny P
On Thu, Aug 29, 2013 at 9:32 AM, giuseppe giorgio wrote: > i'm writing a SOAP web service that store in datastore some data and have > a service for retrieve stored data. Now i would that, after client invoked > the service and data are received correctly, delete it from datastore. I > was thinki

Re: [google-appengine] 121 Error

2013-08-29 Thread Vinny P
On Thu, Aug 29, 2013 at 1:26 AM, Matthew Gilson wrote: > I've been getting a lot of 121 errors today: > > A problem was encountered with the process that handled this request, causing > it to exit. This is likely to cause a new process to be used for the next > request to your application.

Re: [google-appengine] parsererror during query.fetch(1)

2013-08-29 Thread Vinny P
On Thu, Aug 29, 2013 at 12:38 PM, Hiro wrote: > and I always got a "parsererror" when I try calling it using ajax... > something went wrong during the fetching. > > Is this code all in the same file, or different files? In addition, how long is the time difference between calling * user_mail.pu

Re: [google-appengine] Migrating to Python 2.7

2013-08-29 Thread Kim Jae
Hello! thank you for your response. I don't think spacing is the problem because I was able to successfully deploy the previous yaml file. I just added a few words and changed some. attached is the original notepad for your reference. On Fri, Aug 30, 2013 at 12:12 AM, Vinny P wrote: > Are you

Re: [google-appengine] Migrating to Python 2.7

2013-08-29 Thread timh
The errors you reported are pretty specific. It's a problem with you app.yaml I would look at the line immediately preceeding line 10. On Friday, August 30, 2013 8:51:16 AM UTC+8, Kim Jae wrote: > > Hello! thank you for your response. I don't think spacing is the problem > because I was able

Re: [google-appengine] Migrating to Python 2.7

2013-08-29 Thread Vinny P
OK, I think I have it. Add a space between *threadsafe:* and *true* so it looks like this: *threadsafe: true *(space is after the colon ":" ) * * I tested your app.yaml file on a PHP application I had, and it worked when I added a space (and edited the script names, of course!). Just to explain wha

[google-appengine] Re: Finding all the locations in a given radius with GQL

2013-08-29 Thread Peter McKenzie
Another option is to use the Search API: https://developers.google.com/appengine/docs/python/search/query_strings#Python_Queries_on_geopoint_fields On Friday, August 30, 2013 5:07:48 AM UTC+10, Jason Collins wrote: > > In this past, we've used a repeated property to encode a Quadtree ( > http://

[google-appengine] Testing Modules with development server: modules and dispatcher not started

2013-08-29 Thread Oliv
Hello, I'd like to make some tests with the new appengine modules feature but I'm having some problems to make them work on my dev machine. I found this https://github.com/GoogleCloudPlatform/appengine-modules-helloworld-python to give it a try but still no luck. When the app starts I don't s

Re: [google-appengine] Re: Redirect loop on sign-up page

2013-08-29 Thread pablo
Same issue here, I've a previous app before deleting and creating again. pa...@internetandmultimedialtd.com Can you help me? Thanks in advance. El jueves, 6 de septiembre de 2012 11:03:36 UTC+2, Takashi Matsuo (Google) escribió: > > hi pdknsk, > > I assume you still have a problem. Which e-mai

Re: [google-appengine] Redirect loop on sign-up page

2013-08-29 Thread pablo
Sorry, can you explain this a little more? What does "login in the control panel for the account"? Thanks! El martes, 21 de mayo de 2013 20:18:50 UTC+2, Thomas Dwyer III escribió: > > Ditto. The only solution I found so far is logging out of all my accounts, > and then logging into the control

[google-appengine] Can't login: another redirect loop

2013-08-29 Thread pablo
Hello! Another: This webpage has a redirect loop here, I can't login in my Apps Engine account. Any support from Google? I'm viewing messages with the same problem since 2 years! Best. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. T

[google-appengine] Deleting all records from app engine datastore and flush memcache

2013-08-29 Thread Saurabh Saxena
I am displaying data from a data store kind in a html table using jsp. I am trying to delete all records from a Google app engine datastore locally using following code : Query gaeQuery = new Query("Book");PreparedQuery pq = datastore.prepare(gaeQuery);List list = pq.asList(FetchOptions.Buil

[google-appengine] App engine billing problems

2013-08-29 Thread Iain Richardson
1. Can't change the Maximum Daily Budget. 2. Can't add Billing Administrators. 3. Transaction History, Billing Profile and Billing Settings give the following error message: "We apologize for the inconvenience - our engineers have been notified of this problem and are working to resolve it. Pleas

Re: [google-appengine] Redirect loop on sign-up page

2013-08-29 Thread Craig Rayner
Hi, The problem in my case turned out to be two thing. One was that an app I had installed was withdrawn from the Store. In this case, in the Admin panel you will see the HASH key of the app, rather than the name of the App. Remove the HashKey entry from your Admin panel deployment. The second

[google-appengine] Re: Google App Engine trying to access dev data

2013-08-29 Thread Andrew Free
I opened /Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/tools/devappserver2/application_configuration.py and edited the line 84 to say self._application = 's~%s' % self._app_info_external.appli

Re: [google-appengine] Deleting all records from app engine datastore and flush memcache

2013-08-29 Thread Vinny P
On Thu, Aug 29, 2013 at 6:49 AM, Saurabh Saxena wrote: > I am looking for a way around to flush/clear the memcache. > > Hello Saurabh, Memcache offers the *clearAll* method to flush all values. See https://developers.google.com/appengine/docs/java/javadoc/com/google/appengine/api/memcache/Memca

Re: [google-appengine] Help Understand App.yaml

2013-08-29 Thread Vinny P
Hello John, On Tue, Aug 27, 2013 at 9:19 PM, John M wrote: > So, doesn't the file extension already indicate how a file should be > handled? > No. Dynamic applications can and frequently do rewrite URLs internally at will. File extensions can be ignored as well. This isn't a new feature. All

Re: [google-appengine] Can't integrate GCS to existing AppEngine project

2013-08-29 Thread Denis Sigov
Vinny, Ultimately, as you adviced, I went to APIs console, selected my project (created by integrating GAE app), and switched to ON Cloud Storage (it was OFF). Now Cloud Storage buckets are creating fine. Answers for your questions: > When you tried another project, was that a project creat

Re: [google-appengine] Redirect loop on sign-up page

2013-08-29 Thread pablo
Thanks! But the problem here is that I've a app in App Engine :( Best. El viernes, 30 de agosto de 2013 04:41:28 UTC+2, Craig Rayner escribió: > > Hi, The problem in my case turned out to be two thing. One was that an > app I had installed was withdrawn from the Store. In this case, in the

[google-appengine] zopfli compression?

2013-08-29 Thread stephanos
Hi there, I recently read about Google's Zopfli (~5% better compression of asset files). I was wondering how I can combine this with App Engine. I suppose Zopfli is not currently used for compression of App Engine static files, is it? Is it possible to compr