[appengine-java] Re: Development server deletes automatically-generated datastore indices

2011-07-01 Thread Cyrille Vincey
Yes, I have noticed the same behaviour. My workaround: once a index has been automatically generated, I copy its xml configuration from datastore-indexes-auto.xml to datastore- indexes.xml. Thus I consider datastore-indexes-auto.xml as automatic propositions. On Jun 30, 12:14 pm, Ian Marshall

[appengine-java] Re: Development server deletes automatically-generated datastore indices

2011-07-01 Thread Ian Marshall
Yes, the essence of what you describe below is what I plan to do - what a pain, though. It's a pity that the dev app server doesn't look at the automatically- generated indices at launch-time, but I'll live with it. On Jul 1, 8:22 am, Cyrille Vincey cvin...@qunb.com wrote: Yes, I have noticed

Re: [appengine-java] Big Entities vs Small Entities

2011-07-01 Thread John Patterson
Keep them all in one Entity so you only need to do a single datastore get() but embed a List of FormField (or something) in the main entity. Both Twig and Objectify support embedding collections of objects in a single Entity. Entity size is less important than the number of datastore calls

[appengine-java] Cost of using async-session-persistence?

2011-07-01 Thread Mike Lawrence
Googlers? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/TMf-DMwnkYQJ. To post to this group, send email to

[appengine-java] App instance not dying despite hours of non use

2011-07-01 Thread Ian Marshall
I have just created a new (account and) application ID, in order to port my application to use the High Replication datastore. I currently have billing disabled, warm-up requests enabled, and thread-safe operation specified. I see now that the new application ID has one instance running, of age

Re: [appengine-java] Does anyone use sitebricks?

2011-07-01 Thread Drew Spencer
Hey Gal, I'm struggling to see what it actually does and does not do atm. Maybe after I learn Guice for a couple of days all will become clear! I'm still feeling my way around GAE and GWT and now I have to learn Guice. Nice to know there is someone out there using it though! Drew -- You

Re: [appengine-java] Does anyone use sitebricks?

2011-07-01 Thread jMotta
Drew, I'll re-use an e-mail that I've just sent to a person on the Guice mailing list, maybe it help you to start using it: The GWT servlets responsible for proccessing the requests incoming from the RPC framework are just servlets. You map them in the servlet module, using the same context name

[appengine-java] Why are app instances killed after 9000 requests

2011-07-01 Thread Juha K
Hi, I've been testing possible memory leak in my app using JDO. I created a small app with two servlets, the other servlet creating one small JDO entity and the other servlet creating an entity with Objectify. Running the test with JMeter I've realised the memory usage grows quite a bit when

[appengine-java] Google User Session

2011-07-01 Thread Myth17
I am using GAE User Service to Authrnicate my GWT Application. Depending on whether the User is logged in the User is presented with LoginPage/Dashboard. The GWT Application calls a Auth Servlet (Window.Location.assign(/googleauth); causing application to unload which then transfers control

[appengine-java] Major *MAJOR* Problems with Always On

2011-07-01 Thread Scott Murphy
I can no longer successfully deploy an application. It starts up 3 instances, 2/3 start fine. But the one in the middle starts real slow and recycles every minute. This started occurring less than a week ago and I don't know what to do. Is there any paid support for App Engine. This is not

[appengine-java] Looking for a way to change my GAE app's XMPP avatar.

2011-07-01 Thread Dan Bourque
Now that my GAE application can send Jabber messages to my customers, I'd like to replace the blank image for that account. Is there a way to do this? Perhaps by logging in as the app itself (e.g. some...@app-id.appspotchat.com), using Pidgin, Smack, or another XMPP client? I know I can

Re: [appengine-java] Does anyone use sitebricks?

2011-07-01 Thread Ikai Lan (Google)
It's good to see that Dhanji is still working on SiteBricks even though he's no longer with Google. Guice has become absolutely indispensable for me ... but it also reminds me why compiled languages piss me off when I'm writing mocks for tests. Ikai Lan Developer Programs Engineer, Google App

Re: [appengine-java] App instance not dying despite hours of non use

2011-07-01 Thread Ikai Lan (Google)
The new billing isn't live yet, so don't worry too much about this yet. We'll ship a set of scheduler knobs soon so you can tweak instance scheduling. Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine Reddit:

[appengine-java] Re: App instance not dying despite hours of non use

2011-07-01 Thread Ian Marshall
Thanks for that, Ikai. I am reassured as my weekend starts. (GAE(/J) is just so great and keeps improving. Thanks again to everyone at Google and in the wider GAE sphere!) On Jul 1, 6:14 pm, Ikai Lan (Google) ika...@google.com wrote: The new billing isn't live yet, so don't worry too much

Re: [appengine-java] Re: App instance not dying despite hours of non use

2011-07-01 Thread jem...@gmail.com
Glad that you like it. It is the only free paas platform out there. ;) - Reply message - From: Ian Marshall ianmarshall...@gmail.com Date: Fri, Jul 1, 2011 3:18 pm Subject: [appengine-java] Re: App instance not dying despite hours of non use To: Google App Engine for Java

Re: [google-appengine] Re: FAQ for out of preview pricing changes

2011-07-01 Thread Sameer Lodha
@Nickolas Daskalou +1 On Sun, Jun 19, 2011 at 9:39 AM, Nickolas Daskalou n...@daskalou.com wrote: Hi Greg, Yet another 2nd 'next week' ending has come and gone (for those playing at home, that makes 4 weeks). The application we had been working on has been halted in light of the new pricing

[google-appengine] Erratic problem with App Engine when writing files directly to the blobstore

2011-07-01 Thread Damien
I'm using App Engine with Python. In order to store the images of my users, I write them directly to the blobstore as indicated in Google documentation. My code is below: # Image insertion in the blobstore file_name = files.blobstore.create(mime_type='image/jpeg') with files.open(file_name, 'a')

[google-appengine] Re: Updated App Engine Pricing FAQ!

2011-07-01 Thread mscwd01
Re: http://code.google.com/p/googleappengine/issues/detail?id=4834#c13 I haven't had time to check this fix, I'll look into it tonight, the fact that one person says it is fixed and another says it hasn't doesn't install much confidence. It's an extremely important issue, many Java apps use JDO

[google-appengine] Any way to manually construct response and exit?

2011-07-01 Thread Michael
Hello! I've been having trouble with an App Engine production bug (http:// code.google.com/p/googleappengine/issues/detail?id=5272), which is preventing my use of application-specific headers. I was wondering, is there a way to manually construct a response, bypassing WSGI entirely, and simply

[google-appengine] Re: GAE data store indexing

2011-07-01 Thread Geoffrey Spear
On Jun 30, 3:57 pm, Bruce Aloe brucea...@gmail.com wrote: Hello Geoffrey, you mentioned 2 indexes (one in each direction) will be created for each property for each entity. What are the 2 indexes and why? what are the 2 indexes names? You cannot do a query in App Engine without using an

[google-appengine] GAE cursor

2011-07-01 Thread Bruce Aloe
Hello, Google web app provides cursor facility and it enables the application to return pieces of the large query result. My question is: Does the cursor returns the piece result chunk by chunk or row by row? Thanks! Bruce -- You received this message because you are subscribed to the Google

Re: [google-appengine] GAE data store and Google BigTable

2011-07-01 Thread Robert Kluin
The datastore is built on top of big table. There are a few articles that explain some of the details. http://code.google.com/appengine/articles/datastore/overview.html There is also a paper on megastore that is quite good, I don't have a link off hand but some googling should find it. Robert

[google-appengine] Application Indexes Stuck

2011-07-01 Thread Sahid Orentino Ferdjaoui
Hello, I have several indexes blocked with the status Error, I can't recreate or delete it. Someone can help me? Thanks -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit

[google-appengine] New issues raised after using django, need help........!!!

2011-07-01 Thread Sandeep Koduri
Hello, Can any one explain why this error is appearing.. this is a data store get call. which is initialized from a django custom filter. I AM NOT ABLE TO ANALYZE Y THIS IS HAPPENING We are facing many issues with an old app. which we are trying to move from django .96 to 1.2 1. all the

[google-appengine] Deadline exceeded during warm-up

2011-07-01 Thread Bert
Hi, Is anyone else experiencing deadline exceeded errors on warm up? Its been happening for the last hour or so on my app. My app is running on master-slave datastore. System status says everything is fine, so perhaps its just me! On the last instance that just started, the latency was 9 seconds.

[google-appengine] Infinite redirect loop after adding login: admin to app.yaml

2011-07-01 Thread npierfm
Hello, my app was running smoothly until I added: login: admin or login: required in my app.yaml - url: /.* script: controller.py login: admin This app (npiermap.appspot.com) works great on the dev server (even with login: admin) and works great live, as long as I do not have any login

[google-appengine] Problems while porting Cloud IDE for google app engine ?

2011-07-01 Thread sumit singh
I am currently porting caerusone http://caerusone.googlecode.com/files/caerusone.pdfto Google app engine and so far has been successful to be able to run generic mapper / graph in cloud and has been able to rapidly prototype application on Google app engine infrastructure. A Demo

[google-appengine] Hosting App Engine within client's Google Apps?

2011-07-01 Thread George2120
I'm looking at creating an application using Java and GWT to support my client's access to their Google Docs. I don't want to be responsible for hosting or billing my customer for hosting the app in the App Engine. Is there a simpler way to deploy the app to their domain? I know I can make

[google-appengine] The type QueueFactory is deprecated

2011-07-01 Thread ivanming
Hi all, I am trying to use the default queue according to the document, But it said that The type QueueFactory is deprecated, Queue queue = (Queue) QueueFactory.getDefaultQueue(); Do I need to update anything? thanks. Regards, Ivan -- You received this message because you are subscribed to

[google-appengine] Empty applications list

2011-07-01 Thread Grégoire VIGNERON
I created a new application, but my application list (at https://appengine.google.com/start) is still empty. I'm sure the application was correctly created because the Application Identifier is not available anymore, and I have have 9 applications remaining. -- You received this message

[google-appengine] Re: Updated App Engine Pricing FAQ!

2011-07-01 Thread Ronoaldo Pereira
Thank's Greg for keeping us informed. I have a question about the new pricing, specially for the Datastore Operations. The bill for today's usage of my app is* *$60.32, including all fees (CPU, storage, emails, etc.). Looking on the Quota Details, I got the following numbers for the today's

[google-appengine] Confused about Users API

2011-07-01 Thread David Walt
Hi guys, I would like to create a website, using Users API, because as you all know, it provides lots of help to handle log in/out, security, etc. Reinvent the wheel would be stupid I guess. But, and this is huge BUT, you are forced to use Google account (or OpendID). The problem is: if future

Re: [google-appengine] Thread-safe Python Tips

2011-07-01 Thread Joshua Smith
I have this code in one of my apps: townCache = {} def getTown(id): if not id in townCache: townCache[id] = TownModel.get_by_id(id) return townCache[id] Is this thread safe? I think it is, because the worst that happens is the assignment happens redundantly with the same data. Random

[google-appengine] GAE Update Operation

2011-07-01 Thread Noor
I'm trying to update like this but it is not working PersistenceManager PM = PMF.get().getPersistenceManager(); String Previous=Cat.CategoryName.split(Edit)[0]; String Current=Cat.CategoryName.split(Edit)[1]; Category Cur=PM.getObjectById(Category.class,Previous); Cur.CategoryName=Current;

[google-appengine] Re: Unicode Support for Python 2.5

2011-07-01 Thread T. Abilo
I had the same issue. You can avoid this issue (which is caused by your unicode wrongly being handed as a str), simply by forcing it to be unicode like u'mystring' for example. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this

[google-appengine] Problem checking XMPP Availibility with getPresence

2011-07-01 Thread mike
Hi, I´m trying to check the avalibility of a buddy, to whom I have a subscription with that pice of code JID avialibleJid = new JID(availibilitych...@jabber.org); JID fromJid = new JID( ad...@myapp.appspotchat.com); avail= xmpp.getPresence(avialibleJid,fromJid).isAvailable(); stanza =

[google-appengine] Enabled proxy caching on Google headends count against outgoing bandwidth?

2011-07-01 Thread Gyuri
If I enable billing, and also enable reverse proxy caching as described here http://groups.google.com/group/google-appengine/msg/19050c4d51e26e8c will this count against my outgoing bandwidth also? Or could it be that cached content on the proxies does not count as outgoing bandwidth? -- You

[google-appengine] anyone using localStorage (HTML5)

2011-07-01 Thread Gary Frederick
Howdy I included the web pages for an app that uses HTML5 localStorage in a Python project. It works for a bit then the localStorage 'goes away'? Anyone with HTML5 localStorage that is not having problems? (I just tested and will look further) Gary -- You received this message because you

Re: [google-appengine] What's the difference between static and cached requests in the dashboard?

2011-07-01 Thread Ross M Karchner
I'm _pretty_ sure cached means served by the front end cache: http://www.kyle-jensen.com/proxy-caching-on-google-appengine On Wed, Jun 29, 2011 at 6:35 PM, Waleed Abdulla wal...@ninua.com wrote: I noticed a big increase in requests today, and it looks like it's due to a sharp increase in

[google-appengine] A server error has occurred - When creating an app

2011-07-01 Thread Daniel
Hello, after the login to app engine, I click Create Application. I chose a unique ID and title. When clicking Create Application this happens all the time: Server Error A server error has occurred. Return to Applications screen » Am I doing something wrong? -- You received this message

[google-appengine] Error when I Verify Your Account by SMS

2011-07-01 Thread MrPink
I get the following message: The phone number has been sent too many messages or has already been used to confirm an account. How can i fix this? Thanks, -- 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-appengine] Error: Server Error when trying to access with a Google Apps account

2011-07-01 Thread Will Reiher
As of this morning I am unable to get access to our authenticated pages that require our google apps domain login. When logged out completely I do get the login screen and can successfully login - but upon redirection to the app the request stalls and finally issues a 500: Error: Server

[google-appengine] App engine Link

2011-07-01 Thread Matt
Hi, I'm working on a site using App Engine with Python, and I really want to add links to new pages in the site, is there a specific way to do this? I basically want a way to click a link and have a new html page show up. Thanks for any help you can provide, Matt -- You received this message

[google-appengine] How to do a 'count' in App Engine

2011-07-01 Thread Droid
Basic question which I cannot solve: SELECT * FROM MyWords where bookname = 'book1' how can I simply count the number of returns? (I bet its easy eh?) Thanks in advance if you take the time -- You received this message because you are subscribed to the Google Groups Google App Engine

[google-appengine] Datastore Indexes still in building state

2011-07-01 Thread Andrey Nikitin
i created an app acftws. datastore indexes are still in building state but datastore is empty. can it be a little faster or should i vacuum them and deploy one more time? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group,

[google-appengine] The requested URL was not found on this server error message

2011-07-01 Thread Pion
My folder structure on Eclipse project is as the following: war /b/abc /css /js /image index.html It works fine on my development machine But after uploading to Google App Engine, I received the following error message: The requested URL /b/abc was not found on this server . I am

[google-appengine] I think my app's Index has happend

2011-07-01 Thread 승호 최
My app's name is dealmateweb Now admin show me a message( Article at ▲ , hit ▼ index is building ) But Article has only 4000 Entities Why do my indexes stay Building and Deleting for long periods of time? -- You received this message because you are subscribed to the Google Groups Google App

[google-appengine] Re: 500 Errors (DeadlineExceededError) on module imports and other random bits of code

2011-07-01 Thread Soshi HANAMURA
I'm getting same errors today. Errors have obviously increased about 2 hours ago, June 30 22:00 (UTC). My Applications are using python and M/S datastore. Anyone else? On Jun 17, 12:38 am, pinhopro pinho...@gmail.com wrote: I also stared to get import errors. It started yesterday around  10pm

[google-appengine] Re: Combination of Android and Google App Engine

2011-07-01 Thread Gary Frederick
There are a lot of apps built by Google's App Inventor that use Google App Engine. http://appinventor.googlelabs.com/learn/ Very easy to get up and using, prototypes are easy to build, lots of folks doing interesting things with Google App Engine and Android. Your mileage may differ... Gary

Re: [google-appengine] Thread-safe Python Tips

2011-07-01 Thread Ikai Lan (Google)
You don't have to use the global keyword because this is Python, not PHP. If you wanted to use that variable in another module, you would have to import it like this: from module_name import townCache It's possible for two operations to update townCache concurrently, but in your case it looks

Re: [google-appengine] Re: Updated App Engine Pricing FAQ!

2011-07-01 Thread Sergey Schetinin
On 29 June 2011 07:57, Ronoaldo Pereira ronoa...@gmail.com wrote: Also, on a spike in traffic today I got 70 instances up and running for around 30 minutes (Java app without threading yet...). This gives around 70 instances * (30+15 minutes) = 3150 instance hours = $252. That's 3150

RE: [google-appengine] How to do a 'count' in App Engine

2011-07-01 Thread Brandon Wirtz
I would store the result to an array and count the array. That may not be optimal, but usually if I want a result count I wanted the results too, if only to store in memcache. But if you select count(Query) You get just the count for the query. Long Explanation for Java here:

[google-appengine] Re: Infinite redirect loop after adding login: admin to app.yaml

2011-07-01 Thread Geoffrey Spear
On Jun 29, 4:00 pm, npierfm npie...@gmail.com wrote: Hello, my app was running smoothly until I added:   login: admin or login: required in my app.yaml - url: /.*   script: controller.py   login: admin This app (npiermap.appspot.com) works great on the dev server (even with login:

[google-appengine] Re: Updated App Engine Pricing FAQ!

2011-07-01 Thread JH
For a long time I saw alot of strange behaviors as well, but since the relase of HRD I truely believe GAE is ready to leave preview. On Jun 29, 8:16 am, Jeremy Wallez j.wal...@gmail.com wrote: I totally agree with you Vivek. Personnally, I like GAE but I encountered a lot of strange behaviors

[google-appengine] Re: Deadline exceeded during warm-up

2011-07-01 Thread JH
I used to get these when running Master/Slave, since moving to HRD I haven't gotten them. I know that the datastore should not affect startup but some people have suggested that HRD apps are hosted in another environment. I don't know if this is true or not but I know I haven't had this issue

Re: [google-appengine] Empty applications list

2011-07-01 Thread Branko Vukelic
2011/6/29 Grégoire VIGNERON gregoire.vigne...@laobab.fr: I created a new application, but my application list (at https://appengine.google.com/start) is still empty. I'm sure the application was correctly created because the Application Identifier is not available anymore, and I have have 9

Re: [google-appengine] Confused about Users API

2011-07-01 Thread Branko Vukelic
On Wed, Jun 29, 2011 at 10:29 PM, David Walt beaucr...@gmail.com wrote: - Maybe use a Java Framework which provides the same functionnalities that Google API, but with any kind of client? This is probably the best solution if you don't want to use a 3rd party service like Janrain. Of course,

Re: [google-appengine] A server error has occurred - When creating an app

2011-07-01 Thread Branko Vukelic
No. Others had the same problem in various parts of the apps list. On Thu, Jun 30, 2011 at 6:59 PM, Daniel papiertour...@googlemail.com wrote: Hello, after the login to app engine, I click Create Application. I chose a unique ID and title. When clicking Create Application this happens all

Re: [google-appengine] App engine Link

2011-07-01 Thread Branko Vukelic
You want to dynamically create a page like Wiki software does based on the URL? On Thu, Jun 30, 2011 at 11:36 PM, Matt mwein2...@gmail.com wrote: Hi, I'm working on a site using App Engine with Python, and I really want to add links to new pages in the site, is there a specific way to do

[google-appengine] Re: App engine Link

2011-07-01 Thread Geoffrey Spear
On Jun 30, 5:36 pm, Matt mwein2...@gmail.com wrote: Hi, I'm working on a site using App Engine with Python, and I really want to add links to new pages in the site, is there a specific way to do this?   I basically want a way to click a link and have a new html page show up. This has

[google-appengine] Re: Deadline exceeded during warm-up

2011-07-01 Thread Bert
Thanks, Looking to move soon, just haven't taken the step yet. Thanks Rob On Jul 1, 8:35 pm, JH ja...@mhztech.com wrote: I used to get these when running Master/Slave, since moving to HRD I haven't gotten them. I know that the datastore should not affect startup but some people have

Re: [google-appengine] Datastore Indexes still in building state

2011-07-01 Thread Ikai Lan (Google)
I've nudged then into error. Try vacuuming indexes. Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine Reddit: http://www.reddit.com/r/appengine On Fri, Jul 1, 2011 at 10:41 AM, Andrey Nikitin

Re: [google-appengine] Error when I Verify Your Account by SMS

2011-07-01 Thread Ikai Lan (Google)
Click on the first link in this search and fill out the form. You'll be manually verified: http://www.google.com/search?sourceid=chromeie=UTF-8q=sms+waitlist+app+engine Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter:

[google-appengine] Re: I think my app's Index has happend

2011-07-01 Thread Geoffrey Spear
On Jun 30, 10:33 pm, 승호 최 shz0...@gmail.com wrote: My app's name is dealmateweb Now admin show me a message( Article at ▲ , hit ▼ index is building ) But Article has only 4000 Entities Why do my indexes stay Building and Deleting for long periods of time? There's an index building

[google-appengine] Re: Thread-safe Python Tips

2011-07-01 Thread Geoffrey Spear
On Jun 29, 1:40 pm, Joshua Smith joshuaesm...@charter.net wrote: I have this code in one of my apps: townCache = {} def getTown(id):  if not id in townCache:    townCache[id] = TownModel.get_by_id(id)  return townCache[id] Is this thread safe?  I think it is, because the worst that

[google-appengine] Re: Deadline exceeded during warm-up

2011-07-01 Thread todu
I am seeing a surprising slow response recently and this is with multiple instances showing running in administration dashboard. Something has changed in the back-end hopefully not a permanent thing else my app will become un-usable. -- You received this message because you are

Aw: Re: [google-appengine] A server error has occurred - When creating an app

2011-07-01 Thread Daniel
So, there is nothing I can do about it? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/H_Bqa23jvQQJ. To post to this group, send email to

[google-appengine] Re: Bind application to a single account

2011-07-01 Thread Nikolay Sohryakov
Anything with this? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/WWsxP67VIxgJ. To post to this group, send email to

Re: [google-appengine] What's the difference between static and cached requests in the dashboard?

2011-07-01 Thread Waleed Abdulla
Thanks, Ross. That explains it. Didn't know about the front-end cache. On Wed, Jun 29, 2011 at 7:12 PM, Ross M Karchner r...@eventgrinder.comwrote: I'm _pretty_ sure cached means served by the front end cache: http://www.kyle-jensen.com/proxy-caching-on-google-appengine On Wed, Jun 29,

Re: Re: [google-appengine] A server error has occurred - When creating an app

2011-07-01 Thread Branko Vukelic
Well, others didn't get an answer, so I suppose not. I had it happen to me once when I was migrating a M/S app to a new version, and the problem went away after a few minutes. On Sat, Jul 2, 2011 at 12:31 AM, Daniel papiertour...@googlemail.com wrote: So, there is nothing I can do about it? --

[google-appengine] Off Topic: Google Plus

2011-07-01 Thread Brandon Wirtz
Be happy to have any of you in my circle just anyway, but I believe that Google Plus is working like vampires. If I (or anyone already in) friends you you are in. So if you want in, shoot me an email to drakaal at digerat.com mailto:drak...@digerat.com with a subject of Google Plus and I'll get

Re: [google-appengine] What's the difference between static and cached requests in the dashboard?

2011-07-01 Thread Robert Kluin
Nobody *really* knows about it beyond that is exists; it is completely undocumented. On Fri, Jul 1, 2011 at 19:51, Waleed Abdulla wal...@ninua.com wrote: Thanks, Ross. That explains it. Didn't know about the front-end cache. On Wed, Jun 29, 2011 at 7:12 PM, Ross M Karchner

[google-appengine] Re: Off Topic: Google Plus

2011-07-01 Thread JH
drakaal at digerat.com ... ? are you using google apps to access + ? I'd like to but I can't get profiles yet... On Jul 1, 7:52 pm, Brandon Wirtz drak...@digerat.com wrote: Be happy to have any of you in my circle just anyway, but I believe that Google Plus is working like vampires. If I (or

RE: [google-appengine] What's the difference between static and cached requests in the dashboard?

2011-07-01 Thread Brandon Wirtz
And at least on my accounts still only works on MS. -Original Message- From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Robert Kluin Sent: Friday, July 01, 2011 6:29 PM To: google-appengine@googlegroups.com Subject: Re: [google-appengine]

Re: [google-appengine] Re: Off Topic: Google Plus

2011-07-01 Thread Gopal Patel
i think you can create google account with your own email id, and that's what he is using. On Sat, Jul 2, 2011 at 7:29 AM, JH ja...@mhztech.com wrote: drakaal at digerat.com ... ? are you using google apps to access + ? I'd like to but I can't get profiles yet... On Jul 1, 7:52 pm, Brandon

Re: [google-appengine] GAE cursor

2011-07-01 Thread Robert Kluin
The cursor is just a 'bookmark' in the index. It simply tells the query where to resume returning results. You can still batch fetch, or use the iterator protocol if you prefer. Robert On Fri, Jul 1, 2011 at 09:37, Bruce Aloe brucea...@gmail.com wrote: Hello, Google web app provides

Re: [google-appengine] Application Indexes Stuck

2011-07-01 Thread Robert Kluin
By delete, do you mean vacuum the indexes? On Fri, Jul 1, 2011 at 12:07, Sahid Orentino Ferdjaoui sahid.ferdja...@gmail.com wrote: Hello, I have several indexes blocked with the status Error, I can't recreate or delete it. Someone can help me? Thanks -- You received this message

[google-appengine] db.put_async() and transactions

2011-07-01 Thread pdknsk
http://code.google.com/appengine/docs/python/datastore/async.html I've read the paragraph at the linked site on this, but the wording is not clear to me. Do I understand correctly, that get_result() is not required in transactions, because the transaction waits with the commit until the puts

[google-appengine] Amazon SES and Google Apps

2011-07-01 Thread pdknsk
I'd like to switch mails to Amazon SES and register a domain with Google Apps, to enable SPF and possibly DKIM on mails. I've read the docs at Amazon and this seems to require fairly raw DNS records editing. Does Google Apps allow this, or would I have to register the domain with a registrar

Re: [google-appengine] Erratic problem with App Engine when writing files directly to the blobstore

2011-07-01 Thread Robert Kluin
Hi Damien, If you are using the High Replication datastore, this is a known problem. I think there are other issues regarding this too, but here is one: http://code.google.com/p/googleappengine/issues/detail?id=4872 Robert On Fri, Jul 1, 2011 at 04:30, Damien dam...@captur.io

Re: [google-appengine] Forbidden for getting gdata feed from appspot.com

2011-07-01 Thread Robert Kluin
Hi Tom, Did you authenticate to the gdata service? Robert On Thu, Jun 30, 2011 at 08:28, Tom Wu service.g2...@gmail.com wrote: Forbidden for getting gdata feed from appspot.com. The error message is HTTPError: HTTP Error 403: Forbidden . Best Regards Tom Wu -- You received this

RE: [google-appengine] Re: Off Topic: Google Plus

2011-07-01 Thread Brandon Wirtz
Yeah, I'm anti-gmail. Google knows enough about me with out reading my mail. From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Gopal Patel Sent: Friday, July 01, 2011 8:57 PM To: google-appengine@googlegroups.com Subject: Re: [google-appengine]