Might I say - woohoo!! Thanks to your guys help, I got this working. I just want to make sure that I'm doing this the best way.
In my struts-config file, the preloader has to have the form named in addition to having it on the action. The form is setup to be in the request scope, not in the session scope. In my preloader action, instead of doing DynaActionForm taxRatesForm = new DynaActionForm(); I do: DynaActionForm taxRatesForm = (DynaActionForm) form; then I just do: taxRatesForm.set("taxRates", allTaxRates); request.setAttribute("taxRates", allTaxRates); In the submit action, I just have to do: DynaActionForm taxRatesForm = (DynaActionForm) form; TaxRateBean[] taxRates = (TaxRateBean[]) taxRateForm.get("taxRates"); Everything seems to work pretty slickly. My main question is if having to have the name="formName" in the preloader action is correct? It would be nice to know if I am doing anything else the "incorrect" way though also. If I didn't explain anything very well and you want to see code snippets, just let me know. Thanks, Matt --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]