I have following defined in
After you obtain the ActionMessages
/ActionErrors
object which contains the messages or errors you want to display in your input page (using
tags or
tags), you must call one of the following methods from your Action
object to place the result of your validation in scope:
addMessages(HttpServletRequest request, ActionMessages messages)
or
addErrors(HttpServletRequest request, ActionMessages errors)
Are you doing that?