Re: Control Access

2003-03-20 Thread Dejan Krsmanovic
To: Struts Users Mailing List Subject: RE: Control Access Hi Siva, My question about navigation of successful/unsuccessful users...If I directly access any JSP other than login.jsp, then I should be redirected to login.jsp , a way of forcing user to authorization. Thanks mahesh. Jagadeesan

RE: Control Access

2003-03-20 Thread Mike Ash
Where is this securityfilter project? -Original Message- From: Scott Barr [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 11:15 PM To: Struts Users Mailing List Subject: Re: Control Access Or as Max Cooper says, check out the securityfilter project :D I haven't used it myself

Re: Control Access

2003-03-20 Thread Dan Allen
Mike Ash ([EMAIL PROTECTED]) wrote: Where is this securityfilter project? sourceforge.net -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Daniel Allen, [EMAIL PROTECTED] http://www.mojavelinux.com/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The package

RE: Control Access

2003-03-20 Thread Mick . Knutson
, March 20, 2003 3:18 PM To: 'Struts Users Mailing List' Subject: RE: Control Access Where is this securityfilter project? -Original Message- From: Scott Barr [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 11:15 PM To: Struts Users Mailing List Subject: Re: Control Access

Control Access

2003-03-19 Thread mahesh kagitha
Can any one please explain the following... I'm developing an application which has login page(JSP) to access the application and I should allow only the successfully logged in users to navigate my application otherwise direct to login page. My question here is... How can I do that.?

RE: Control Access

2003-03-19 Thread Chen, Gin
[mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 3:49 PM To: [EMAIL PROTECTED] Subject: Control Access Can any one please explain the following... I'm developing an application which has login page(JSP) to access the application and I should allow only the successfully logged in users

RE: Control Access

2003-03-19 Thread Robert Taylor
: Wednesday, March 19, 2003 3:49 PM To: [EMAIL PROTECTED] Subject: Control Access Can any one please explain the following... I'm developing an application which has login page(JSP) to access the application and I should allow only the successfully logged in users to navigate my

RE: Control Access

2003-03-19 Thread Jagadeesan,Sivakumar
if the login fails I am sorry I was in hurry so not able to give any code example. Let me know if I am not that clear --Siva -Original Message- From: mahesh kagitha [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 2:49 PM To: [EMAIL PROTECTED] Subject: Control Access Can any one

RE: Control Access

2003-03-19 Thread mahesh kagitha
sorry I was in hurry so not able to give any code example. Let me know if I am not that clear --Siva -Original Message- From: mahesh kagitha [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 2:49 PM To: [EMAIL PROTECTED] Subject: Control Access Can any one please explain

RE: Control Access

2003-03-19 Thread Jagadeesan,Sivakumar
: Control Access Hi Siva, My question about navigation of successful/unsuccessful users...If I directly access any JSP other than login.jsp, then I should be redirected to login.jsp , a way of forcing user to authorization. Thanks mahesh. Jagadeesan,Sivakumar [EMAIL PROTECTED] wrote:Hi Mahesh

Re: Control Access

2003-03-19 Thread Sloan Seaman
[EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 4:09 PM Subject: RE: Control Access Hi Siva, My question about navigation of successful/unsuccessful users...If I directly access any JSP other than login.jsp, then I should be redirected

Re: Control Access

2003-03-19 Thread Joey Ebright
The documentation that comes with Struts and the examples actually show a great example of doing this. Basically there is a tag that you place at the top of each JSP page that checks to see if the user has an object in session (has logged in) and if not, redirects them to the login page. Hope

Re: Control Access

2003-03-19 Thread David Graham
[EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: Control Access Date: Wed, 19 Mar 2003 21:29:20 -0800 The documentation that comes with Struts and the examples actually show a great example of doing this. Basically there is a tag that you place at the top of each JSP

Re: Control Access

2003-03-19 Thread Scott Barr
Or as Max Cooper says, check out the securityfilter project :D I haven't used it myself, I use container manager authentication and jdbc realms, but the securityfilter project does look pretty cool. Scott Barr www.exergonic.com.au On Thu, 2003-03-20 at 15:59, Joey Ebright wrote: The