Have you ensured you have caught all the places where NewUserWizard is used. You'll need to make sure the following places are changed:
- You have a managed bean defined for MyNewUserWizard in the faces config files (copy and paste the NewUserWizard entry and change the bean name)
- The action link on the page the wizard starts from has been changed i.e. on users.jsp….
action="createUser" actionListener="#{MyNewUserWizard.startWizard}"
and
action="editUser" actionListener="#{MyNewUserWizard.startWizardForEdit}"
- All the pages used by the wizard have changed NewUserWizard to MyNewUserWizard
When you say the Person object has null values, do you mean the person is null or that you have the person but it has no properties? Are you editing or creating with the wizard?