Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

a) actually provided an input type in your xworkaction.xml file

Code Block
xml
xml
titlexwork.xml
	..
        <result name="input" type="dispatcher">
		<param name="location">/editUser.jsp</param>
	</result>
	..

b) you enabled the validation interceptor in your xworkaction.xml

Code Block
xml
xml
titlexwork.xml
	..
	<interceptor-ref name="defaultStack"/>
	<interceptor-ref name="validation"/>
	..

...