I had a mistake in my value object. Be sure to check the following things:
For every form field in your form there must be one and only one setter method with the same name. So if you have a form field called firstName there has to be a method setFirstName() in your Bean.
The second thing (and I'm not sure if I'm correct here, but it resolved the problem for me) is, make sure the property of your bean is the same type like your form field. So again, if you have a form field firstName of type String there has to be a a property _firstName of type String in your Bean.
Step through the the copyProperties() Method in your debugger and check on which property the exception is thrown. This is how i singled out my problem.
Hope this helps. Good luck with the bug hunt!
Patrick
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

