I am using MyActionForm extending ActionForm and created an instance of that in the action class.
I am writing..
BeanUtils.copyProperties(actionForm,myActionForm);
actionForm....ActionForm obj in the action.
myActionForm ... Bean(form) obj that is extending ActionForm.
I am getting the folowing exception...
java.lang.IllegalArgumentException: No destination bean specified
I have set some the values of the form and forwarding to a JSP page where I have the matching propertiees.
I have used the copyProps many time and never got the above exception.
Did a lot of check and could not find what is going on.
Appreciate help.