RE: prob. with collections

2001-10-19 Thread Cobbie . Behrend
which did you do: ? That would not have given you the exception you mentioned, puting would have. CB "Dua, Amit" <[EMAIL PROTECTED]> on 10/19/2001 02:18:00 PM Please respond to [EMAIL PROTECTED] To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> cc: Subject: RE: prob. with collections

Re: Replacing the Form in an Action

2001-10-19 Thread Cobbie . Behrend
Assuming that you wish to replace the form in request scope, and that you are creating the new form in your action, then the code in your action would be: request.setAttribute( "formBeanName", newForm); where "formBeanName" = the name you used in your struts-config.xml when you defined the form

Re: Unable to handle ActionForm class hierarchies?

2001-09-18 Thread Cobbie . Behrend
Have you tried specifying the name explicitly? As in: I have experienced this same error when having more than one form in a session with the same property's. The actionForm associated with a particular action was not being set. After specifying the name explicitly the desired property was se