In your form you need to have instantiated your objects (duno how to say it, new to java/struts). I have had this problem about 5 times, and I always forget.
eg instead of
private User myUser;
you need
private User myUser = new User();
hope that helps - apparently this message is displayed for other errors as well.