Re: Application Security

2005-02-08 Thread Tim Christopher
> >} > >catch (Exception e) { > > System.out.println("Error\n" + e); > >} > > > >%> > > > > > >On Tue, 8 Feb 2005 20:17:49 -0500, David G. Friedman > ><[EMAIL PROTECTED]> wrote: > > > > > >>Tim,

Re: Application Security

2005-02-08 Thread Erik Weber
ion host/port/URL. Regards, David -Original Message- From: Tim Christopher [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 08, 2005 5:45 PM To: Struts Users Mailing List Subject: Re: Application Security I managed to solve the first error by reordering the elements within the server.xm

Re: Application Security

2005-02-08 Thread Tim Christopher
Original Message- > From: Tim Christopher [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 08, 2005 5:45 PM > To: Struts Users Mailing List > Subject: Re: Application Security > > I managed to solve the first error by reordering the elements within > the s

RE: Application Security

2005-02-08 Thread David G. Friedman
, February 08, 2005 5:45 PM To: Struts Users Mailing List Subject: Re: Application Security I managed to solve the first error by reordering the elements within the server.xml file, however I'm now stuck with the following error (which occurs when the server is started): JDBCRealm[Catalina]: Exce

Re: Application Security

2005-02-08 Thread Tim Christopher
5 12:07:16 -0500, David G. Friedman <[EMAIL PROTECTED]> wrote: > Tim, > > Have you also updated your web.xml and Tomcat conifgurations? > > -Original Message- > From: Tim Christopher [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 08, 2005 12:05 PM > T

RE: Application Security

2005-02-08 Thread David G. Friedman
Tim, Have you also updated your web.xml and Tomcat conifgurations? -Original Message- From: Tim Christopher [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 08, 2005 12:05 PM To: Struts Users Mailing List Subject: Re: Application Security Cheers for all your advice. I've just

Re: Application Security

2005-02-08 Thread Tim Christopher
Cheers for all your advice. I've just tried implementing the JDBCRealm, though unfortunaltly it does not work. The Log4j error file contains the following: http-80-Processor25 ERROR org.apache.catalina.realm.JAASRealm JAASRealm.java:269 Unexpected error java.lang.SecurityException: Unable to loc

RE: Application Security

2005-02-07 Thread Joe Hertz
hould be pretty simple... > -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Siggelkow > Sent: Monday, February 07, 2005 10:02 PM > To: user@struts.apache.org > Subject: Re: Application Security > > Tim, > > The first problem of popul

RE: Application Security

2005-02-07 Thread Joe Hertz
hould be pretty simple... > -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Siggelkow > Sent: Monday, February 07, 2005 10:02 PM > To: user@struts.apache.org > Subject: Re: Application Security > > Tim, > > The first problem of popul

Re: Application Security

2005-02-07 Thread Niall Pemberton
The forms for container managed security don't have to be plain html - you can configure in the web.xml custom "Logon" and "Logon Error" pages which can be jsps, not just plain html. I have a custom tag on each of these pages which writes the fact that a user has arrived at that page to log4j alon

Re: Application Security

2005-02-07 Thread Bill Siggelkow
Tim, The first problem of populating a form bean with user data can be handled by populating/creating a UserBean using techniques such as a servlet filter. Alternatively, you can extend the RequestProcessor. Other techniques that work, but are not as global in nature, are using a base action. T