Is the page that's supposed to display the errors returned from the same request that found them? This may not be the case if you are using frames, redirect or Tiles. The errors are saved as a request attribute, so if it's not the same request, the errors will be gone.
-- Martin Cooper > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 30, 2002 7:21 AM > To: [EMAIL PROTECTED] > Subject: ActionErrors in ActionForm and JSP not showing up... > > > > > if (this.companySelection == null || > this.companySelection.equals("")) { > System.out.println("FormPremadeReport:validate > > No Company > Selected"); > errors.add(ActionErrors.GLOBAL_ERROR, new > ActionError("error.requestform.company.required")); > } > return errors; > > > I have the above code in my ActionFormValidate... When I submit the > form it passes the IF (as it should) and returns me to the HTML form > page. BUT my JSP for: > > <logic:messagesPresent> > <!-- Errors detected --> > <font color="Red"><html:errors/></font> > </logic:messagesPresent> > > Sends back the comment and font tags, but nothing after that... > > Any ideas? I do have the application properties for all the > settings, > plus the shown resource above... > > > > > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

