RE: Testing Struts With JUnit

2005-08-19 Thread Mitchell, Steven C
Luiz, Are you aware that there is an extension of Junit made for testing Struts? http://strutstestcase.sourceforge.net/ -Original Message- From: Luiz Godoy [mailto:[EMAIL PROTECTED] Sent: Thursday, August 18, 2005 3:22 PM To: Struts Users Mailing List Subject: Testing Struts With JUnit

RE: Question on log on with SecurityFilter and JDBCRealm

2005-08-19 Thread Mitchell, Steven C
contextInitializer com.umb.optout.view.ContextInitializerFilter contextInitializer /secured/* Steve -Original Message- From: C.F. Scheidecker Antunes [mailto:[EMAIL PROTECTED] Sent: Thursday, August 18, 2005 5:19 PM To: Struts Users Mailing List; Mitchell, Steven C Subject: Re: Question on l

RE: Question on log on with SecurityFilter and JDBCRealm

2005-08-18 Thread Mitchell, Steven C
Have you considered using a Filter to put the extra stuff in your Session? We use an initialization Filter that looks up a User record based on the authenticated user id. We then place that User object both in the Session and a thread local variable so that it is available to all the layers of ou

Passing data between action forms

2005-07-08 Thread Mitchell, Steven C
I'm curious to hear what other people are doing regarding the passing of data between actions. Take for example an advanced search page with validation, drop down lists, the works. Upon successful validation the user should flow to a search results page. Assume the results page is part of someth