Re: [appengine-java] Banning users from my app.

2011-08-17 Thread Raphael André Bauer
What about that: Security and Authentication at http://code.google.com/intl/de-DE/appengine/docs/java/config/webxml.html No server calls needed if you are ok with Google based authentification... Works for all resources (RPCs included).. Best, Raphael On Tue, Aug 16, 2011 at 10:51 PM, Ikai

[appengine-java] Banning users from my app.

2011-08-16 Thread Rohan Chandiramani
Greetings gentlemen, I haven't found ANY articles either here or on SO about discussing methods of keeping the bad people out of your app, so i'l just ask it here. I want to be able to press a button that will ban the user from accessing my app and the most straightforward thing i can think of

Re: [appengine-java] Banning users from my app.

2011-08-16 Thread Renan Mobile
Hello, I didn't figure out another way. So i check if the user is ban in each RPC call Atenciosamente, - Presidente Renan Franca Renan Mobile ltda: http://renanmobile.com - Soluções em Dispositivos Móveis (Smartphones) com integração via web. Soluções em: Android (Smartphones);

Re: [appengine-java] Banning users from my app.

2011-08-16 Thread Ikai Lan (Google)
Yep. Datastore call and possibly Memcache (usually when someone is banned they stay banned). A optimization here would to cache something like a bloom filter ( http://www.google.com/search?sourceid=chromeie=UTF-8q=bloom+filter) in local memory, and if a user hashes to in the set, check again to