Re: Do we have any Library for OpenID autentication(Authentication using Google accounts/Face book etc.)

2010-07-30 Thread V M
Anybody used jopenid http://code.google.com/p/jopenid/? http://code.google.com/p/jopenid/ http://code.google.com/p/jopenid/Cheers, VM On Thu, Jul 29, 2010 at 5:47 PM, V M thinker...@gmail.com wrote: Thanks everyone for your valuable input. I guess i have to lookinto implementation of

Re: Do we have any Library for OpenID autentication(Authentication using Google accounts/Face book etc.)

2010-07-29 Thread Danny Goovaerts
I've implemented support for openID with special case for Google and Yahoo mail (www.cellamea.eu). I've written a servlet that uses openid4java to interact with the openid providers. I can make the code available. On this moment, it's not packaged in an isolated way, so it's not usable out of the

Re: Do we have any Library for OpenID autentication(Authentication using Google accounts/Face book etc.)

2010-07-29 Thread Jeff Chimene
Hi: I'm not convinced that GWT is the right environment for Authentication. GWT is a great toolkit, but solving the authentication/authorization problem in an application-agnostic way is a tough problem to solve. FWIW, one of my current apps supports traditional username/password as well as

Re: Do we have any Library for OpenID autentication(Authentication using Google accounts/Face book etc.)

2010-07-29 Thread lineman78
You don't want to use GWT for authentication, what you want to do is use the authentication provided to you by the container. The solution that Danny provided does just that. You want to use a JSR-196 authentication provider like openId4Java and use your web.xml to require authentication to

Re: Do we have any Library for OpenID autentication(Authentication using Google accounts/Face book etc.)

2010-07-29 Thread V M
Thanks everyone for your valuable input. I guess i have to lookinto implementation of OpenID4Java. Cheers, VM On Thu, Jul 29, 2010 at 2:04 PM, lineman78 linema...@gmail.com wrote: You don't want to use GWT for authentication, what you want to do is use the authentication provided to you by

Do we have any Library for OpenID autentication(Authentication using Google accounts/Face book etc.)

2010-07-28 Thread V M
Hello GWT Users, I am just wondering if we have any Library to do authentication using OpenID providers like Google accounts/Facebook. Here is what i am trying to do: * Create a site which needs log-in widget/page/module to customize UI for Users. What is the best way to create a Login form in