RE: Where's the best place to do authentication

2001-05-22 Thread Jon.Ridgway
] Subject: Where's the best place to do authentication Where would be the best place/way to authenticate every user's request? I want to avoid inserting code to authenticate in all of my classes which extend Action class. Should I create a class like MyAction to put this sort of code, then extends

Re: Where's the best place to do authentication

2001-05-22 Thread Gregor Rayman
Jon.Ridgway [EMAIL PROTECTED] writes: Hi Shogo, Have a look at the 'example' webapp provided with struts, this uses a taglib to check the user is logged on, I'm sure you could use/amend it to fit your purpose. Jon. I am not very happy with taglibs checking for logged in user. Taglibs can

RE: Where's the best place to do authentication

2001-05-22 Thread Gogineni, Pratima
the best place to do authentication Jon.Ridgway [EMAIL PROTECTED] writes: Hi Shogo, Have a look at the 'example' webapp provided with struts, this uses a taglib to check the user is logged on, I'm sure you could use/amend it to fit your purpose. Jon. I am not very happy with taglibs checking

RE: Where's the best place to do authentication

2001-05-22 Thread Kurt Olsen
is not authenticated. pratima -Original Message- From: Gregor Rayman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 22, 2001 3:59 AM To: [EMAIL PROTECTED] Subject: Re: Where's the best place to do authentication Jon.Ridgway [EMAIL PROTECTED] writes: Hi Shogo, Have a look

Where's the best place to do authentication

2001-05-21 Thread Ito, Shogo
Where would be the best place/way to authenticate every user's request? I want to avoid inserting code to authenticate in all of my classes which extend Action class. Should I create a class like MyAction to put this sort of code, then extends this new class? Any better way? Any suggestion