ActionErrors and ActionMessages not working.

2006-11-30 Thread Tamilselvan Radha Krishnan
Hi, I'm using struts 1.2 version and currently held up in a minor issue but I could not figure out what i'm missing. In the code snippet below, From Action class I'm adding an ActionErrors to display an Error message in the JSP. In JSP I've a message Tag with correctly. The Action is correctly

RE: ActionMessages not working

2006-04-27 Thread fea jabi
Here is the solution for this just make sure to add message="true" in the html:messages tag i.e IN jsp or just ${CrditRtMsg} From: "fea jabi" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: user@struts.apache.org Subject: Acti

ActionMessages not working

2006-04-27 Thread fea jabi
in action I have ActionMessages messages = (ActionMessages)frm.validate( mapping, request ); if ( messages != null && !messages.isEmpty() ) { saveMessages(request, messages); * return (mapping.findForward("validFailed")); }else