[appengine-java] Re: authentication questions

2010-01-24 Thread ale
Ok, I will try. And wath is the best way to follow? OAuth? The aim is a single sign on and not store user credential,like password and don' implemet registration form ... (and use the google account) Thanks a lot! Regards On 22 Gen, 21:04, Ikai L (Google) ika...@google.com wrote: Yes, that's

[appengine-java] A GWT/GAE best practices project. Want to participate?

2010-01-24 Thread andreas_b
Hi all. I've just started a new open source GWT/GAE project where I will be following Ray Ryan's best practices and recommended design patterns. Every step of the way will be posted on the web and I will try to initiate discussions with readers on how to solve problems along the way. If you are

[appengine-java] Reduced Guice start-up time

2010-01-24 Thread John Patterson
Hi, I've been looking at ways to reduce the start up time of my app and found that I can save about 50% of the time that Guice takes to build its Injector by using the No-AOP version. On my app this reduced initialisation time from 6-7 seconds to about 4 seconds... so not a huge

[appengine-java] Re: A GWT/GAE best practices project. Want to participate?

2010-01-24 Thread Deanna
Have you seen this http://blog.hivedevelopment.co.uk/2009/08/google-web-toolkit-gwt-mvp-example.html It is a sample project that uses the best practices from that video. On Jan 24, 8:44 am, andreas_b andreas.borg...@gmail.com wrote: Hi all. I've just started a new open source GWT/GAE project

[appengine-java] Re: A GWT/GAE best practices project. Want to participate?

2010-01-24 Thread andreas_b
Yes. I actually refer to that blog in my pages..it is a great walkthrough and is a good starting point for learning about the best practices. However, it is still only a hello world example and it's a whole other story to apply these practices and design patterns to a more complex, real world

[appengine-java] Re: A GWT/GAE best practices project. Want to participate?

2010-01-24 Thread Deanna Bonds
I am about to code a new project where I intend to use the approach in Ray Ryan's video. I will send your project any tidbits I find. On Jan 24, 9:05 am, andreas_b andreas.borg...@gmail.com wrote: Yes. I actually refer to that blog in my pages..it is a great walkthrough and is a good starting

[appengine-java] Re: A GWT/GAE best practices project. Want to participate?

2010-01-24 Thread Deanna Bonds
Would you prefer to discuss any ideas here, or through your project page? On Jan 24, 9:08 am, Deanna Bonds deanna.bo...@gmail.com wrote: I am about to code a new project where I intend to use the approach in Ray Ryan's video.   I will send your project any tidbits I find. On Jan 24, 9:05 am,

[appengine-java] Re: A GWT/GAE best practices project. Want to participate?

2010-01-24 Thread andreas_b
Hi. Preferrably via the project page if you can find an appropriate place for the discussion, but if its something that might be of value for other forum visitors here, we can discuss it here and I can simply add/ link to it from the project page. What kind of project are you working on? BR,

[appengine-java] Re: A GWT/GAE best practices project. Want to participate?

2010-01-24 Thread Deanna Bonds
My project is a Guild hosting site (for mmorpgs and other games) and Gamer social networking site, with everything integrated (the current crop of them all have stand alone projects tied together from a portal like page). First thing that is probably a good discussion for this group is design

[appengine-java] Re: A GWT/GAE best practices project. Want to participate?

2010-01-24 Thread andreas_b
Ah. Sounds interesting. I'm familiar with TDD from projects at work, although I haven't been much involved in the definition parts. I read the BDD introduction and it seems to make sense. I will definitely try it out.. I haven't gotten around to define a test methodology yet since I first wanted

[appengine-java] Presentation on doing full-text search etc

2010-01-24 Thread Mats
I though I'd share this presentation I found which includes some tips on using memcache, message delivery fanout, key only queries and a simple java version of this appengine-search http://www.billkatz.com/2009/6/Simple-Full-Text-Search-for-App-Engine Video part1:

[appengine-java] Key question

2010-01-24 Thread jopaki
Can I represent a primary key (Key) in an entity class as an Object ref? In other words, can I do: @PersistenceCapable(identityType = IdentityType.APPLICATION) public Class AnEntity { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Object pk; } Thanks. --

[appengine-java] org.mortbay.jetty.Request.getUri() api call does not work on appengine. even though it works locally (dev env)

2010-01-24 Thread Shrek
org.mortbay.jetty.Request.getUri() api call does not work on appengine. even though it works locally (dev env) i get following exception on appengine. does anybody know what is going on? org.codehaus.groovy.grails.web.mapping.exceptions.UrlMappingException: Error mapping onto view [/index]: No

Re: [appengine-java] Presentation on doing full-text search etc

2010-01-24 Thread Duong BaTien
Wow. Thanks for Sharing. We start to get some juice out of GAE. After spending too much time on JPA then JDO, it is much easier and more efficient with http://code.google.com/p/objectify- appengine/wiki/IntroductionToObjectify#Multi-Value_Relationship Hope this may help some more since the GAE

Re: [appengine-java] Key question

2010-01-24 Thread m seleron
Hi, I think that I cannot use Object as Key. Please refer to the following links http://code.google.com/intl/us/appengine/docs/java/datastore/creatinggettinganddeletingdata.html#Keys thanks. 2010/1/25 jopaki jop...@gmail.com: Can I represent a primary key (Key) in an entity class as an