[google-appengine] does Query.execute() returns the same result list in same order for every execution ?

2010-06-30 Thread saggy
hi,am new to GAE can anybody tell me that if i perform 10 or 100 times Query.execute() with same parameters and same query on same data then will it return the same result list in same order or in different order? Thanks in advance. -- You received this message because you are subscribed to th

[google-appengine] Re: Need help in building index

2010-06-30 Thread l.denardo
> Can someone also please tell me whether or not the index.yaml file > plays a role in running the app on localhost or not. I cannot > comprehend why the app (even the feature that needed that particular > index) was working fine on localhost if the index.yaml was malformed > and the same app brea

[google-appengine] does Query.execute() returns the same result list in same order for every execution ?

2010-06-30 Thread saggy
hi,am new to GAE can anybody tell me that if i perform 10 or 100 times Query.execute() with same parameters and same query on same data then will it return the same result list in same order or in different order? Thanks in advance. -- You received this message because you are subscribed to th

[google-appengine] Re: Why am I getting a SACSID cookie after login instead of an ACSID?

2010-06-30 Thread Tim Cuthbertson
if anyone else ever encounters this, the problem is you need to use https when you've got a "SACSID" cookie. Answered here, in slightly longer format: http://stackoverflow.com/questions/3074679/why-am-i-getting-a-sacsid-cookie-from-google-appengine-login-instead-of-an-acsid/3147676#3147676 On Jun

[google-appengine] App Engine announcement emails being marked as Phishing in Gmail

2010-06-30 Thread Danny Tuppeny
When I get emails from the App Engine team, such as one today titled "Notification: Upcoming scheduled maintenance periods July 7th, 2010 and July 14th, 2010", it goes into my spam folder, and is marked with the phishing notice: Warning: This message may not be from the alleged person or organisat

Re: [google-appengine] does Query.execute() returns the same result list in same order for every execution ?

2010-06-30 Thread djidjadji
All queries use an index to retrieve the objects. If you don't delete or add objects you get the same result for the exact same query. 2010/6/30 saggy : > hi,am new to GAE can anybody tell me that if i perform 10 or 100 times > Query.execute() with same parameters and same query on same data then

Re: [google-appengine] Re: asked to verify after switching from googlemail.com to gmail.com

2010-06-30 Thread Scott Cowan
I was recommended to go to this page http://appengine.google.com/waitlist/sms_issues and they sorted it out in under 24h On Wed, Jun 9, 2010 at 8:54 AM, alan.richardson wrote: > I have this problem. > > I want to create a new application, but ca

[google-appengine] Re: App Engine announcement emails being marked as Phishing in Gmail

2010-06-30 Thread François Masurel
Yep, got it back from my spam folder, and it displays the same warning message. On 30 juin, 10:50, Danny Tuppeny wrote: > When I get emails from the App Engine team, such as one today titled > "Notification: Upcoming scheduled maintenance periods July 7th, 2010 > and July 14th, 2010", it goes int

Re: [google-appengine] 10 secs URLFetch limit

2010-06-30 Thread Miroslav Genov
Hello, If you have control over the remote site, you can push a request to the remote site to tell it to send an updated content via post to a service that is deployed on GAE. For Example: GAE App -> sends request to a remote site that is ready to receive the new content External Site -> send

[google-appengine] Re: App Engine announcement emails being marked as Phishing in Gmail

2010-06-30 Thread matic
It also happened to me. Usually I never check spam folder, but this time I was lucky :) On Jun 30, 12:28 pm, François Masurel wrote: > Yep, got it back from my spam folder, and it displays the same warning > message. > > On 30 juin, 10:50, Danny Tuppeny wrote: > > > > > When I get emails from th

Re: [google-appengine] App Engine announcement emails being marked as Phishing in Gmail

2010-06-30 Thread Harshal
+1 On Wed, Jun 30, 2010 at 2:20 PM, Danny Tuppeny wrote: > When I get emails from the App Engine team, such as one today titled > "Notification: Upcoming scheduled maintenance periods July 7th, 2010 > and July 14th, 2010", it goes into my spam folder, and is marked with > the phishing notice: >

[google-appengine] Re: HTTPS on my domain through proxy?

2010-06-30 Thread Geoffrey Spear
It can't be done at the moment, although it's on the roadmap. The main App Engine roadmap doesn't have any projected dates, but the App Engine for Business roadmap projects it for the end of the year. My impression is that the main block to implementation is browser support for SNI; IE, Chrome, a

[google-appengine] How to "reply" to an email received by a GAE app?

2010-06-30 Thread Kyle Jensen
The docs are clear on receiving and sending email. Now I'd like to "reply" to an email from a user and have it appear correctly threaded in their inbox. How can I achieve this? Thanks so much, Kyle -- You received this message because you are subscribed to the Google Groups "Google App Engin

[google-appengine] Problem with POST data when using blobstore upload

2010-06-30 Thread ekampf
I have a form with a several fields including one file field. When using regular form submit I get all the data on the server (I'm using django - request.POST has the data) When I submit through the blobstore handler when it redirects to my code the request.POST dictionary is empty. Any idea what

[google-appengine] Re: How to "reply" to an email received by a GAE app?

2010-06-30 Thread l.denardo
Can you clarify what you're doing? The following thing works correctly, anyway: -Send the email using the Mail API setting * The user's address as the sender * The intended address (e.g. "admins") as the receiver When you receive the email at the destination address (e.g. your address if you're

[google-appengine] View this page "Google App Engine Open Source Projects"

2010-06-30 Thread Jason (Google)
Added Eezee MVC Click on http://groups.google.com/group/google-appengine/web/google-app-engine-open-source-projects - or copy & paste it into your browser's address bar if that doesn't work. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group.

[google-appengine] Is datastore still slow?

2010-06-30 Thread Khookie
I'm working on an app at the moment, and it sometimes drops HTTP requests, especially ones that make calls to the datastore. There are periods during the day where the app is absolutely unusable because most AJAX calls just stalls and timeouts. At other times, the same queries work like an absolu

Re: [google-appengine] Is datastore still slow?

2010-06-30 Thread Nate Bauernfeind
So far in my experience (over the past two days and then on the 26th) the data store has been slow for bulk inserts and deletes. I think that the bulk stuff is still iterating over each element and making single calls to the datastore. I don't know how possible it is to affect other users with my

[google-appengine] Re: HTTPS on my own domain

2010-06-30 Thread Phil
Does anyone have experience setting up an https capable proxy? I don't even know where to start. Searching found a number of proxy lists and instructions to setup a regular http proxy. Maybe I'm not looking for the right thing here? Thanks! Phil On Jun 14, 5:26 am, Barry Hunter wrote: > > Is

[google-appengine] Smart card

2010-06-30 Thread Sam
Hello all. I'm wondering if i can implement smart card authentication in GAE. I'm aware that i will have to use a *.appspot domain in order to use SSL. I don't like this idea because GAE uses a generic certificate to all apps in appspot and this could cause impersonification of my website to a use

[google-appengine] You cover me, I cover you!

2010-06-30 Thread Nevin Freeman
Hi all, I am the sole developer for http://riabiz.com, a news website running on App Engine. This is a great gig -- I really like that, thanks to App Engine, one amateur can make a site like this from scratch and keep it running well. The trouble is that if I am 'off the grid,' there is nobody to

Re: [google-appengine] You cover me, I cover you!

2010-06-30 Thread rudolf michael
hi can handle that if it was done using GWT+java backend. but i guess that you need to move the whole front end to be implemented using GWT, it will become much much faster and the code maintainable and clearer. Good job and very nice interface :-) i liked it regards, Rudolf Michael On W

[google-appengine] Upcoming maintenance notification

2010-06-30 Thread Ikai L (Google)
Hey guys, I just wanted to point out there are upcoming maintenance periods scheduled for July 7th and July 14th at 5pm Pacific. More details here: http://groups.google.com/group/google-appengine-downtime-notify/browse_thread/thread/a8131355d266b37f Normally, I wouldn't post these notifications

Re: [google-appengine] You cover me, I cover you!

2010-06-30 Thread Ikai L (Google)
You can also look up developers here: http://www.appenginepeople.net/ (Yes, this is itself an App Engine app!) On Wed, Jun 30, 2010 at 11:43 AM, rudolf michael wrote: > hi can handle that if it was done using GWT+java backend. > but i guess that you need to move the whole front end to

Re: [google-appengine] Possible to have more than 10 applications?

2010-06-30 Thread Ikai L (Google)
Can you fill out this form? http://code.google.com/support/bin/request.py?contact_type=AppEngineBillingSupport I don't see any reason why we can't grant this request if you've been using your App IDs for Wave robots. Be sure you include the gmail address you used to sign up for appspot.com. On W

Re: [google-appengine] Problem with maps api key

2010-06-30 Thread Ikai L (Google)
This question is probably better directed here: http://groups.google.com/group/Google-Maps-API I am fairly certain that this means the Maps API key is tied to the domain and not the appspot.com URL, but not 100% sure. On Wed, Jun 23, 2010 at 6:44 PM, Mac wrote: > Whenever I visit http://hospit

[google-appengine] Re: Upcoming maintenance notification

2010-06-30 Thread johntray
I can confirm that the email from the downtime-notify group was indeed routed to my Gmail spam folder. It includes a red-overlay message: "Warning: This message may not be from whom it claims to be. Beware of following any links in it or of providing the sender with any personal information". There

Re: [google-appengine] Please delete following index.

2010-06-30 Thread Ikai L (Google)
Go ahead and run vacuum_indexes now. Your indexes have been placed into error. On Thu, Jun 24, 2010 at 8:54 PM, わた wrote: > The generation of index doesn't advance like Building. > It is not said that it will burn it a lot though 24 hours or more have > passed. > > It doesn't go well though appc

Re: [google-appengine] Re: asked to verify after switching from googlemail.com to gmail.com

2010-06-30 Thread Ikai L (Google)
Yes, for all future requests - if you have an issue switching from Googlemail to Gmail, please fill out this form: http://appengine.google.com/waitlist/sms_issues Put "Googlemail -> Gmail" in your request body as well as your old/new email addresses. We'll manually verify you. On Wed, Jun 30, 20

Re: [google-appengine] App Engine announcement emails being marked as Phishing in Gmail

2010-06-30 Thread Ikai L (Google)
I didn't see this thread. At any rate, I created a new thread for this. I'll look into this. Was anyone able to receive the email address correctly and not have it flagged as a phishing or spam request? On Wed, Jun 30, 2010 at 5:26 AM, Harshal wrote: > +1 > > > On Wed, Jun 30, 2010 at 2:20 PM,

[google-appengine] Re: Problem with POST data when using blobstore upload

2010-06-30 Thread Waldemar Kornewald
On Jun 30, 4:05 pm, ekampf wrote: > I have a form with a several fields including one file field. > When using regular form submit I get all the data on the server (I'm > using django - request.POST has the data) > When I submit through the blobstore handler when it redirects to my > code the requ

Re: [google-appengine] Re: Upcoming maintenance notification

2010-06-30 Thread Robert Kluin
Went to my spam folder as well. On Wed, Jun 30, 2010 at 2:19 PM, johntray wrote: > I can confirm that the email from the downtime-notify group was indeed > routed to my Gmail spam folder. It includes a red-overlay message: > "Warning: This message may not be from whom it claims to be. Beware of

Re: [google-appengine] Re: Upcoming maintenance notification

2010-06-30 Thread Ikai L (Google)
Was this message correctly directed into anyone's inbox? On Wed, Jun 30, 2010 at 12:48 PM, Robert Kluin wrote: > Went to my spam folder as well. > > > > On Wed, Jun 30, 2010 at 2:19 PM, johntray wrote: > > I can confirm that the email from the downtime-notify group was indeed > > routed to my Gm

[google-appengine] Re: You cover me, I cover you!

2010-06-30 Thread Nevin Freeman
Rudolf: Thanks! I've actually considered migrating all the JS to GWT :) Been a while since I used it though. Ikai: Neat! Just signed up. If I don't get someone here perhaps I'll solicit people on there. On Jun 30, 11:53 am, "Ikai L (Google)" wrote: > You can also look up developers here: > > htt

[google-appengine] Re: How to "reply" to an email received by a GAE app?

2010-06-30 Thread Kyle Jensen
Sorry, what I wrote is not clear. My application is receiving emails from users. I'd like to reply to those in an automated fashion. E.g. "Thanks, we received your email..." etc. It's not clear to me how to reply to a message that my GAE app receives. Thanks. Kyle On Jun 30, 10:53 am, "l.

[google-appengine] Re: Upcoming maintenance notification

2010-06-30 Thread Claude Vedovini
Same here! On Jun 30, 9:19 pm, johntray wrote: > I can confirm that the email from the downtime-notify group was indeed > routed to my Gmail spam folder. It includes a red-overlay message: > "Warning: This message may not be from whom it claims to be. Beware of > following any links in it or of p

[google-appengine] error in compiling jsp files when i'm trying to deploy to app engine

2010-06-30 Thread Tamer_F
Hi everybody When I'm trying to deploy my app on app engine with Netbeans, I got this error Beginning server interaction for E-Mart... 0% Creating staging directory 5% Scanning for jsp files. 8% Compiling jsp files. Error Details: Jun 30, 2010 10:56:22 PM org.apache.jasper

[google-appengine] Re: Upcoming maintenance notification

2010-06-30 Thread nickmilon
Same for me ;-) On Jun 30, 11:46 pm, Claude Vedovini wrote: > Same here! > > On Jun 30, 9:19 pm, johntray wrote: > > > > > I can confirm that the email from the downtime-notify group was indeed > > routed to my Gmail spam folder. It includes a red-overlay message: > > "Warning: This message may

[google-appengine] Re: Problem with maps api key

2010-06-30 Thread nickmilon
Why don't work with G MAP API V3 which does not require a key and it is quite faster ? On Jun 30, 10:03 pm, "Ikai L (Google)" wrote: > This question is probably better directed here: > > http://groups.google.com/group/Google-Maps-API > > I am fairly certain that this means the Maps API key is t

[google-appengine] Serious slowness and 500 errors for appengine.google.com

2010-06-30 Thread alon
Im getting 500 error messages on the appengine.google.com/a/mydomain and server is super slow to no response. what is going on? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegrou

[google-appengine] Re: Serious slowness and 500 errors for appengine.google.com

2010-06-30 Thread alon
all my cron jobs are getting time exceeded for tiny processes. anyone investigating? On Jul 1, 2:07 am, alon wrote: > Im getting 500 error messages on the appengine.google.com/a/mydomain > and server is super slow to no response. > what is going on? -- You received this message because you are

[google-appengine] SDK 1.3.5 released!

2010-06-30 Thread Ikai L (Google)
Hey everybody, We've released the 1.3.5 SDK. Blog post here: http://googleappengine.blogspot.com/2010/06/app-engine-sdk-135-released-with-new.html The big announcements are the raising of the Task Queue rate, Python precompilation, and new Blob features. You can get it from the downloads page:

[google-appengine] Re: Serious slowness and 500 errors for appengine.google.com

2010-06-30 Thread alon
ok confirmed abnormal datastore. http://code.google.com/status/appengine On Jul 1, 2:09 am, alon wrote: > all my cron jobs are getting time exceeded for tiny processes. anyone > investigating? > > On Jul 1, 2:07 am, alon wrote: > > > > > Im getting 500 error messages on the appengine.google.c

Re: [google-appengine] Re: Serious slowness and 500 errors for appengine.google.com

2010-06-30 Thread Waleed Abdulla
Same here. A ton of 500 errors. app = networkedblogs On Wed, Jun 30, 2010 at 4:09 PM, alon wrote: > all my cron jobs are getting time exceeded for tiny processes. anyone > investigating? > > On Jul 1, 2:07 am, alon wrote: > > Im getting 500 error messages on the appengine.google.com/a/mydomai

[google-appengine] Re: Serious slowness and 500 errors for appengine.google.com

2010-06-30 Thread alon
must be related to the new sdk or something. i hope... On Jul 1, 2:11 am, Waleed Abdulla wrote: > Same here. A ton of 500 errors. app = networkedblogs > > > > On Wed, Jun 30, 2010 at 4:09 PM, alon wrote: > > all my cron jobs are getting time exceeded for tiny processes. anyone > > investigating?

[google-appengine] Re: Serious slowness and 500 errors for appengine.google.com

2010-06-30 Thread alon
it seems to be going back to normal now. On Jul 1, 2:14 am, alon wrote: > must be related to the new sdk or something. i hope... > > On Jul 1, 2:11 am, Waleed Abdulla wrote: > > > > > Same here. A ton of 500 errors. app = networkedblogs > > > On Wed, Jun 30, 2010 at 4:09 PM, alon wrote: > > > a

Re: [google-appengine] Re: Serious slowness and 500 errors for appengine.google.com

2010-06-30 Thread Waleed Abdulla
Yes, back to normal here too. Phew.. On Wed, Jun 30, 2010 at 4:24 PM, alon wrote: > it seems to be going back to normal now. > > On Jul 1, 2:14 am, alon wrote: > > must be related to the new sdk or something. i hope... > > > > On Jul 1, 2:11 am, Waleed Abdulla wrote: > > > > > > > > > Same he

[google-appengine] Re: Serious slowness and 500 errors for appengine.google.com

2010-06-30 Thread alon
failed alot of my tasks. 2500+ tasks. need to re-run them. err... :) On Jul 1, 2:27 am, Waleed Abdulla wrote: > Yes, back to normal here too. Phew.. > > > > On Wed, Jun 30, 2010 at 4:24 PM, alon wrote: > > it seems to be going back to normal now. > > > On Jul 1, 2:14 am, alon wrote: > > > must

[google-appengine] Re: Upcoming maintenance notification

2010-06-30 Thread Darien Caldwell
Oddly enough, yes. I got the message in my Inbox, with no issues. On Jun 30, 12:55 pm, "Ikai L (Google)" wrote: > Was this message correctly directed into anyone's inbox? > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this g

[google-appengine] Re: Is datastore still slow?

2010-06-30 Thread Khookie
I doubt you're the culprit - I'm sure Google's infrastructure can handle much much more than that! Just to clarify, it timeouts on all sorts of datastore operations, including gets & puts (my app rarely needs to delete anything). And it's been happening since the App Engine team announced their d

Re: [google-appengine] Re: Serious slowness and 500 errors for appengine.google.com

2010-06-30 Thread Ikai L (Google)
Looks like a one-time anomaly. Note that we're still not finished with our datastore latency work yet. On Wed, Jun 30, 2010 at 4:29 PM, alon wrote: > failed alot of my tasks. 2500+ tasks. need to re-run them. err... :) > > On Jul 1, 2:27 am, Waleed Abdulla wrote: > > Yes, back to normal here to

[google-appengine] Testers for a Sports team website

2010-06-30 Thread ae
I created (using GAE) a website for a friend to manage his sports teams (baseball, hockey, soccer). It has everything he needed, including detailed player stats, player availability, photo sharing, mailing lists, etc. And recently, I've generalized it so others can use it to manage their sports t

[google-appengine] Re: Upcoming maintenance notification

2010-06-30 Thread Luís Marques
Same here, in the spam folder marked as fishing. Luís -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+u

[google-appengine] Restart a new GAE process

2010-06-30 Thread Will
Hi all, Is there a way to shut down the current GAE process and restart a new one? The problem is now and then we saw some strange errors such as AttributeError: 'RegexURLResolver' object has no attribute 'name' and KindError: Kind 'User' is not a subclass of kind 'User' Things are back to no

Re: [google-appengine] Re: Upcoming maintenance notification

2010-06-30 Thread Takashi MATSUO
Unfortunately same here. The message went to the spam folder with the message "Warning: This message may not be from whom it claims to be. Beware of following any links in it or of providing the sender with any personal information. ". -- Takashi Matsuo matsuo.taka...@gmail.com Kay's daddy 201

[google-appengine] can't operate on multiple entity groups in a single transaction

2010-06-30 Thread Philip Tucker
Would it be possible for AppEngine to spit out in the logs WHICH entity groups it's failing on for "can't operate on multiple entity groups in a single transaction" errors? These can be a pain to track down. -- You received this message because you are subscribed to the Google Groups "Google App

[google-appengine] Re: Upcoming maintenance notification

2010-06-30 Thread Arun Shanker Prasad
Yup, the downtime notification mail was in my inbox. On Jul 1, 12:55 am, "Ikai L (Google)" wrote: > Was this message correctly directed into anyone's inbox? > > On Wed, Jun 30, 2010 at 12:48 PM, Robert Kluin wrote: > > > > > > > Went to my spam folder as well. > > > On Wed, Jun 30, 2010 at 2:19 P

[google-appengine] Capability API for Coming Maintenance Periods

2010-06-30 Thread Greg
Hi - Can a Googler confirm whether or not the capability API will work during the upcoming outages? It hasn't worked for the last two, which caused our apps to fail dis- gracefully. Do we need to build our own memcache and datastore detection logic? Cheers Greg. -- You received this message be

[google-appengine] Re: HTTPS on my own domain

2010-06-30 Thread TL
You would need to set this HTTP proxy outside of app engine. For example, Squid on amazon EC2. The proxy would be set as reverse proxy, and should point to your appspot secure domain (to ensure that you have HTTPS connection all the way to your app). I imagine you would also need to tell app engine