Re: Wanted API to handle user roles

2003-11-03 Thread Vic Cekvenich
You can use J2EE container security to autheticate the user and for some high level security. For low level and complex security, once the user is identified, you can extend it. I use JDBC relms with a self join and row level security. So a user in a certian level of a tree can see for example al

Re: Wanted API to handle user roles

2003-11-03 Thread Rajat Pandit
hello zsolt, i am currently working on a project with similar required. if wonder if u have read about ActionMapping. make your own custom mapping (by extending ActionMapping) and then define properties in it like getRole, setRole. and in the structs-config.xml file itself, mention the role

RE: Wanted API to handle user roles

2003-11-03 Thread David Friedman
shows that Tomcat Principals are ready-only, not mutable. Regards, David -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of Vic Cekvenich Sent: Monday, November 03, 2003 11:16 AM To: [EMAIL PROTECTED] Subject: Re: Wanted API to handle user roles You can use J2EE container s

RE: Wanted API to handle user roles

2003-11-03 Thread Edgar P Dollin
Write your own and implement with a filter. Edgar > -Original Message- > From: Zsolt Koppany [mailto:[EMAIL PROTECTED] > Sent: Monday, November 03, 2003 9:56 AM > To: Tomcat Users List; Struts Users Mailing List > Subject: Wanted API to handle user roles > > > Hi, > > I'm searching fo