Hi Myles, You have several ways to achieve this : 1/ Use the container features (all of them do support BASIC and FORM authentication), it's in the spec ;-P 2/ Use a specific authentication (and possibly authorization) library like Acegi 3/ Implement your own form, controller and filter
The simplest one IMHO, if your requirement is only to provide secured access to your webapp, is 1/ : it's only about configuring your web.xml, and registering the users in your app server. Then, if you want to bind your own users/roles storage, 2/ is probably good. I wouldn't go for 3/... redeveloping authentication/authorization is quite a wheel to reinvent :) Cheers Remi On Tue, Sep 9, 2008 at 9:04 AM, Kadusale, Myles <[EMAIL PROTECTED]> wrote: > Good Day to All! > > What is the best way to implement login and logout modules in Stripes? > > I have already studied bugzooky but I am confused which part is the > implementation > for the login and logout module, I am sorry about the noob question I am > new to Web Apps. > > I wish there was a simple sample on how to implement login/logout in > Stripes. > > > Thanks in advance > Myles > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Stripes-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/stripes-users > ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Stripes-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/stripes-users
