Jeff, i think I have to explain better my self. If you check against the UserService if the user is logged in ( http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/users/UserService.html#isUserLoggedIn%28%29 ) here you will have the trouble that I said to you, when the user logs out from another Google service will be loged out from your application too.
On the other hand you can store your own session variable after the user login with the UserService and in this case you wouldn't need to take care about what I said. But, in this case what can happen is that a Google User logins to your app with a Google Account ([email protected]) and then logouts from gmail and login with another acount to gmail ([email protected]). The Google user loged will be [email protected] but you still will be working with [email protected] If you dont't care about this, store you own session variable after the user logins and voila'. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
