response.sendRedirect(response.encodeRedirectURL(request.getParameter("redirectToClientUrl")));
the error messages are getting printed on the same page instead of appearing a alert message box.
public ActionForward doExecute(ActionMapping actionMapping, ActionForm actionForm, HttpServletRequest httpServletRequest,
HttpServletResponse httpServletResponse) throws Exception {
// stuff1...
// stuff2...
return actionMapping.findForward("success");
}
MessageResource.properties file is in /web-inf/src/java folder
Not all the form values but some of them which I create dynamically using java script.
Is there some property or something that I need to set in order to use the local validator-rules.xml file.