Re: [google-appengine] Understanding keys-only query costs

2013-01-04 Thread Ryan Chazen
Ah - I'm using Java and not Python. Appstats does work, and I have set it up on /appstats - this is where I got the write costs in the original post. I guess the /shell is not part of the

[google-appengine] How do i do now? someone has used my blog and do Copyright violation and use my blog for their Google APP Engine

2013-01-04 Thread ravi kumar
Lets come to the issue first, I was surfing my blog, i wondered to see in Google search results that someone used my domain URL in their Google APP Engine and included adult web ads using my whole website content. my blog is gsesoft.blogspot.com The Content thief URL : http://surf206.appspot.c

Re: [google-appengine] change the default logging level of deferred

2013-01-04 Thread working
Hi Takashi, Thank you so much! Another related question is that /_ah/warmup is also using logging.INFO . Since it is introduced in app.yaml, how could I change the logging for warmup? - working On Thursday, January 3, 2013 12:38:21 PM UTC-8, Takashi Matsuo (Google) wrote: > > > > import loggi

[google-appengine] security-constraint issue in web descriptor

2013-01-04 Thread Herbert Gomez
Hello colleagues, Formerly my GAE app has certain configuration of the web descriptor to make use of the Google Account authentication service. This configuration looked as follows: Protected Area /* * Later on, I implemente

[google-appengine] BotoClientError server certificate validation failure when running in GAE

2013-01-04 Thread googlefox
I am using Google Appengine to write a file to google storage using REST API. As part of this, I log some metrics to amazon cloudwatch. I am using buildout with rod.recipe.appengine buildout recipe to package the application. In order to test this app, I am running it under dev_appserver on my

Re: [google-appengine] Understanding keys-only query costs

2013-01-04 Thread Guido van Rossum
On Fri, Jan 4, 2013 at 1:59 PM, Ryan Chazen wrote: > That link - /_ah/stats/shell - does not seem to be working for me on either > the dev server or the live server. I get a 404 error. Does /_ah/stats work for you? If it doesn't work, you haven't enabled Appstats in your app.yaml (it's in the bui

Re: [google-appengine] Understanding keys-only query costs

2013-01-04 Thread Ryan Chazen
That link - /_ah/stats/shell - does not seem to be working for me on either the dev server or the live server. I get a 404 error. I think I found the issue - the query that is confusing me is using an 'IN' filter, eg property IN [1,2] In this case, for a keys-only query, would each member of the

Re: [google-appengine] Understanding keys-only query costs

2013-01-04 Thread Johan Euphrosine
Hi Ryan, A query cost 1 read + 1 read per entity retrieved or 1 small read per key if that's a key only query as described in the documentation: https://developers.google.com/appengine/docs/billing#Billable_Resource_Unit_Costs So fetching 2 items using a regular query should cost: 1 DATASTORE_REA

[google-appengine] Re: Support to fetch unread messages from gmail/Google Apps account

2013-01-04 Thread Vinny P
Currently, you can't fetch mail via IMAP/POP3 on App Engine. The only choice is to either try and sign up for the Sockets Trusted Tester program ( https://groups.google.com/forum/?fromgroups=#!topic/google-appengine/m1x6sDhqx1o ) or to put your fetching code on a server external to GAE. -Vinn

[google-appengine] Understanding keys-only query costs

2013-01-04 Thread Ryan Chazen
Hi, Could anybody help me out with understand keys-only query costs? I've done the following tests: Fetch 2 items using a regular query (fully entity fetched) - (3 RPCs, cost=350, billed_ops=[DATASTORE_READ:5]) Fetch 2 items using a keys-only query, and then fetch the full item (cache miss) - (

Re: [google-appengine] Help! Billing Out of Control!

2013-01-04 Thread Stephen Blum
Hi Takashi and Google Team, We made the transition successfully from *Master/Slave* to the new *High Replication *datastore. However it cost us just under *$2,000.00 and it was supposed to be free*. Please let us know how we fix this billing error. On Wednesday, January 2, 2013 11:26:23 PM UTC

[google-appengine] Re: Error code 202

2013-01-04 Thread José Luis Montesinos González
Me too... 1. 1. 2013-01-04 20:17:43.418 /admin/v1/api/jugador?id=chico%40gmail.com 500 702ms 0kb Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0 83.34.246.90 - joseluismg500 [04/Jan/2013:11:17:43 -0800] "GET /admin/v1/api/jugador?id

RE: [google-appengine] Re: libgmp bug?

2013-01-04 Thread Fattah, Issa
My reason for saying this is the following warning: /usr/lib/python2.7/site-packages/pycrypto-2.6-py2.7-cygwin-1.7.17-i686.egg/Crypto/Util/number.py:57: PowmInsecureWarning: Not using mpz_powm_sec. You should rebuild using libgmp >= 5 to avoid timing attack vulnerability. _warn("Not using mpz

[google-appengine] Re: libgmp bug?

2013-01-04 Thread ifattah
I would also greatly appreciate a fix for this warning as well. On Tuesday, August 21, 2012 1:05:54 PM UTC-4, c h wrote: > using python27 this started showing in my error logs today: > > >1. 2012-08-21 08:22:06.683 > > > /base/python27_runtime/python27_lib/versions/third_party/pycr

[google-appengine] Password failure

2013-01-04 Thread trevor . price1
I get the following error even though I use the correct password (repeated deploy 10 times, turned firewall off etc). I am using windows 8. Anyone have any ideas? 2013-01-04 11:46:01 Running command: "['C:\Python27\pythonw.exe', '-u', 'C:\Program Files (x86)\Google\google_appengine\appcfg.py

Re: [google-appengine] Re: Jersey REST with List<> as a query parameter

2013-01-04 Thread Ryan Chazen
I'll file a bug for it. I hit into a similar issue as well: HTTP DELETE requests can have a body defined when calling the dev server, but when calling the live server you get a 400 bad request with zero info on the admin logs that the request even occurred - it does not show in errors or anywhere

Re: [google-appengine] Re: Jersey REST with List<> as a query parameter

2013-01-04 Thread ludovic Champenois
On 1/4/13 7:51 AM, Ryan Chazen wrote: Is there any way to run unit tests on appengine directly instead of running them only on the dev server? At any rate, the error is not from the multiple query parameters, but rather (found from a Google search), that the addHeader method on AppEngine live

[google-appengine] Re: Jersey REST with List<> as a query parameter

2013-01-04 Thread Ryan Chazen
Is there any way to run unit tests on appengine directly instead of running them only on the dev server? At any rate, the error is not from the multiple query parameters, but rather (found from a Google search), that the addHeader method on AppEngine live does not accept nulls while the dev ser

[google-appengine] Re: Jersey REST with List<> as a query parameter

2013-01-04 Thread Ryan Chazen
The stack trace from AppEngine is as follows: com.sun.jersey.spi.container.ContainerResponse mapMappableContainerException: The RuntimeException could not be mapped to a response, re-throwing to the HTTP container java.lang.NullPointerException at org.mortbay.io.Portable.getBytes(Portabl

[google-appengine] Jersey REST with List<> as a query parameter

2013-01-04 Thread Ryan Chazen
In JAX-RS, the following is valid: @GET @Produces(MediaType.APPLICATION_JSON) @Path("/test") public Response getTest(@QueryParam("ids") List ids) To call this, you could use /test?ids=1&ids=2&ids=3 This works correctly on the AppEngine dev server (jetty), but when deployed to Ap

[google-appengine] Support to fetch unread messages from gmail/Google Apps account

2013-01-04 Thread Munish Kumar
Hi, We have Java Applications running on Google App Engine Platform. We need to fetch messages from Google Mail accounts on daily basis. But there is no support on app engine for it. Please suggest me a solution. As per my best knowledge no protocol like *smtp* or *pop3 *is supported on app en

[google-appengine] Re: Session object instances different. Is this correct?

2013-01-04 Thread jon
Hi all, I have written a shopping cart application with a shopping cart > object being stored in the http session. On each request I'm returned a > different object instance. Is this the expected behaviour? > Yes. > If I modify my shopping cart object, do I need to store it in the session >

Re: [google-appengine] channel api not working on production

2013-01-04 Thread alex
problem is onerror callback is not being always called so the client isn't given a chance to recover. that turns out to be a big deal. On Fri, Jan 4, 2013 at 9:31 AM, Aleksei Rovenski wrote: > I see 400 SID errors, but it seems not to be critical, because we are able > to recover easily, there is

Re: [google-appengine] channel api not working on production

2013-01-04 Thread Kristopher Giesing
This is exactly my experience. I would recommend to anyone considering use of the Channel APIs that they find an alternative. - Kris On Friday, January 4, 2013 12:15:33 AM UTC-8, Aleksei Rovenski wrote: > > I can confirm this issue. It is there from August, it was the first time I > noticed at

Re: [google-appengine] channel api not working on production

2013-01-04 Thread Aleksei Rovenski
btw those are 2 issues I would like to be fixed, please star them: Add timestamp to channel presence notifications http://code.google.com/p/googleappengine/issues/detail?id=8151 Channel API batch send method http://code.google.com/p/googleappengine/issues/detail?id=4506 :D пятница, 4 января 2013

Re: [google-appengine] channel api not working on production

2013-01-04 Thread Aleksei Rovenski
I see 400 SID errors, but it seems not to be critical, because we are able to recover easily, there is onerror callback called and client simply creates new channel, no big deal.. Much worse is when client and server do not know about the problem as I described above.. пятница, 4 января 2013 г.

Re: [google-appengine] channel api not working on production

2013-01-04 Thread alex
http://code.google.com/p/googleappengine/issues/detail?id=4940 On Fri, Jan 4, 2013 at 9:15 AM, Aleksei Rovenski wrote: > I can confirm this issue. It is there from August, it was the first time I > noticed at least. For us it looks like this - everything connected and > works, messages flow, then

Re: [google-appengine] channel api not working on production

2013-01-04 Thread Aleksei Rovenski
I can confirm this issue. It is there from August, it was the first time I noticed at least. For us it looks like this - everything connected and works, messages flow, then all of a sudden w/o any pattern in time or any other conditions, client simply stops receiving any messages. No callbacks,