Hi Wendy,
thx for your reply, but there are some questions left:

this is where i am: there is my business object 'sb' and the upcoming DynaActionForm. sb extends ActionForm, there should be sb.execute().

Nope. It goes request->form creation->action. You are being passed the form in the signature of ActionForm.execute(), all you have to do is cast it to the right type:

DynaActionForm dForm = (DynaActionForm) form;
Shall i cast my business object 'sb' ? That would look like this:
DynaActionForm dSB = (DynaActionForm) sb

Or shall i look for the DynaActionForm in sb.execute() which will look like this:
sb.execute()
{
//there must be a way to access Struts DynaForms
.
DynaActionForm dSB = (DynaActionForm) form
}
How do i get the form Objekt ?


I debugged deep into Struts sources, found a 'mapping' Object with a 'formBeans' Vector but no way to access this mapping.
Do you have a suggestion ?




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to