[google-appengine] Sign up to use Java in appEngine

2009-04-12 Thread Edward
I singed up to use Java several hours ago; how long does it take to get approved? - e --~--~-~--~~~---~--~~ 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] Re: Sign up to use Java in appEngine

2009-04-12 Thread Prashant Gupta
i got my approval in 3-4 hrs. On Sun, Apr 12, 2009 at 12:24 PM, Edward 061...@gmail.com wrote: I singed up to use Java several hours ago; how long does it take to get approved? - e --~--~-~--~~~---~--~~ You received this message because you are

[google-appengine] Re: Sign up to use Java in appEngine

2009-04-12 Thread T.J. Crowder
Minutes, in my case... HTH, -- T.J. On Apr 12, 7:54 am, Edward 061...@gmail.com wrote: I singed up to use Java several hours ago; how long does it take to get approved? - e --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[google-appengine] users.User.email()

2009-04-12 Thread 'Αλκης Ευλογημένος
Does this function guarantee that the email will be returned as all lowercase for the currently logged in user? If it is can this be added to the docs? -- Alkis --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[google-appengine] Re: users.User.email()

2009-04-12 Thread David Symonds
2009/4/12 Alkis Evlogimenos ('Αλκης Ευλογημένος) evlogime...@gmail.com: Does this function guarantee that the email will be returned as all lowercase for the currently logged in user? If it is can this be added to the docs? If it's not in the docs, it's probably not guaranteed. Just call

[google-appengine] 500 error for static files today April 12 5:23am

2009-04-12 Thread iceanfire
Hi there, I've been encountering this problem @ around 5:23am Central Time. Two of my static files for my page (a .css and a .js) seem to consistently give a 500 error. The .css file sometimes loads (30% of the time) as I refresh. I wasn't sure where else to report this. I know its kinda early

[google-appengine] Re: users.User.email()

2009-04-12 Thread 'Αλκης Ευλογημένος
If it is not in the docs it might be an oversight :-) 2009/4/12 David Symonds dsymo...@gmail.com 2009/4/12 Alkis Evlogimenos ('Αλκης Ευλογημένος) evlogime...@gmail.com: Does this function guarantee that the email will be returned as all lowercase for the currently logged in user? If it is

[google-appengine] Re: PageContextImpl giving issues (java.lang.ClassCastException: java.security.AccessControlException) with Spring form tag?

2009-04-12 Thread N. Peeters
It seems that this is cause by all specific forms fromthe Spring taglib form:form... . Any idea how to get around this? Anybody got Spring forms to work on GAE? On Apr 10, 4:50 pm, N. Peeters peete...@gmail.com wrote: Hi, I'm getting the following error when the JSP page tries to compile. Any

[google-appengine] Re: GAE inter-apps communication

2009-04-12 Thread DarkCoiote
Humm.. Didn't remember that, and with a quick (really quick) look didn't find that too... But that make sense, as It would be a way to 'bypass' the quotas and a way to do bad things (dos)...and other evil stuff too! lol But then, with an application like I said - central database, to use for

[google-appengine] URLFetch can't parse the content-type header

2009-04-12 Thread 秦锋
I tried to fetch following url and check the content-type: http://www.pbc.gov.cn/diaochatongji/tongjishuju/gofile.asp?file=2009S07.htm The html seems: meta http-equiv=Content-Type content=text/html; charset=gb2312 It's a page generated by Excel. The response header content-type only return

[google-appengine] Re: Sudden Issues: Datastore timeout and

2009-04-12 Thread Paul Kinlan
Hi, Its weird, I am still seeing lots of timeouts for puts and reads at the moment. The app does a lot of writes, but I wouldn't expect these to cause too much of an issue, saying that I am starting to see a lot of contention issues too. Paul. 2009/4/11 Alkis Evlogimenos ('Αλκης Ευλογημένος)

[google-appengine] Re: Will Google support a relational database in the future?

2009-04-12 Thread Consultuning
Pushing calculations from read time to write time makes sense in that reads seriously out number writes for most web applications. Pushing calculations at write time instead of read time has some other very very strong implication that you're probably missing: that you know in advance what you

[google-appengine] Datastore Question

2009-04-12 Thread Paul Kinlan
Hi Guys, My app is Twitterautofollow. I have a question about the quota, basically my app was serving between 6-13 requests a second and jumped up to 32 requests per-second and subsequently went over the quota. I am not sure where the 32 requests a second are comming from although some of them

[google-appengine] Re: Datastore Question

2009-04-12 Thread 'Αλκης Ευλογημένος
Pervasive use of memcache + exponential backoff retries on most operations solved it for me. On Sun, Apr 12, 2009 at 11:55 PM, Paul Kinlan paul.kin...@gmail.com wrote: Hi Guys, My app is Twitterautofollow. I have a question about the quota, basically my app was serving between 6-13 requests

[google-appengine] Re: GAE inter-apps communication

2009-04-12 Thread djidjadji
Terms Of Service 4.4 You can put your separate applications at different URLs of the appid with the data. http://greatappid.appspot.com/application1/ http://greatappid.appspot.com/application2/ http://greatappid.appspot.com/application3/ 2009/4/12 DarkCoiote darkcoi...@gmail.com: Humm..

[google-appengine] Transactions - Entity Groups

2009-04-12 Thread ae
Does anybody else find transactions very restricting? How do I solve this problem? Here is my data model... Team(db.Model): name = db.StringProperty() Game(db.Model): team1 = db.ReferenceProperty(Team, collection_name='game1_set') team2 = db.ReferenceProperty(Team,

[google-appengine] Re: Transactions - Entity Groups

2009-04-12 Thread djidjadji
Start with answering the question: Do I need a transaction? I don't think you need it to delete a team. Every Team and every Game are root entities, no child objects. When you want to delete a Team 1) find all Games that have the Team in attribute team1 2) delete these Games, maybe

[google-appengine] Re: Transactions - Entity Groups

2009-04-12 Thread GMailingList
Ok maybe I don't absolutely need it to delete a team but what about... 1) when I'm creating a new game - team1 or team2 could be deleted as I'm creating a new game, then the game will have a team that does not exist OR 2) for arguments sake, I need the deletion of a team (and all the games

[google-appengine] Re: Will Google support a relational database in the future?

2009-04-12 Thread Andy Freeman
In the business environment it's often not know, and the flexibility in this regard provided by relational databases is part of what has made them so popular. Only if the schema makes it possible to get what you want. And, even if it does, the cost may be excessive.

[google-appengine] Re: Should I take my website somewhere else? - blocked in China

2009-04-12 Thread 风笑雪
For this second, you can set an A record to 74.125.113.121. But google.dns.tancee.com will keep available if this IP got banned. So when Chinese can't visit your web site, you can ping google.dns.tancee.com to see if there is a new available IP, and change your A record again. Hope this would be