Hi.
I switched to Struts1.1 beta now and I wonder if there is a way to avoid the framework
from resetting the DynaActionForm on every request. This is because i reshow the view
to the user to commit the data. The, in the second request, which is not send by a
form, i wnat to insert the values inside the FormBean into the business tier. With the
"old" FormBeans, everything worked out fine, because I didnt implement reset(...).
The DynaActionForms are always resetted. Is there a way to prevent this without
deriving? If not, what is this DynaActionClass about? If i simply derive
DynaActionForm and overwrite reset(...), i get a null pointer exception in here:
sb.append(getDynaClass().getName());
Who or what sets the dynaClass-member?
Greets Axel