My appln has these components:
1. UserForm - which is my ActionForm
2. UserAction
3. my
EJB stuff
4. My DTO to tranfer data from web to ejb tier
Here is what happens:
The UserAction pulls the data out of UserForm, constructs a new DTO and sends it to the EJB stuff.
My question is, can I not send the UserForm directly to the EJB tier. I guess I should make it serializable. Are there any issues in this.