the correct way is to define the error in ur properties file.

errors.add(ActionErrors.GLOBAL_ERROR,new ActionError("my.error"));

Message in Application.resources
my.error=my error here

-Tim

-----Original Message-----
From: James Prance [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 18, 2003 10:31 AM
To: [EMAIL PROTECTED]
Subject: Newbie Question: ActionErrors.


Anyone tell me why the error message specified in the "
errors.add(ActionErrors.GLOBAL_ERROR,new ActionError("my error here")); "
code in my Action Servlet doesnt appear on the jsp page. The header and
footer appear, but the error message does not.. what have I missed?

Code in  ActionServlet -
errors.add(ActionErrors.GLOBAL_ERROR,new ActionError("my error here"));

Code in JSP -

<%@ page language="java" %>

<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>

<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>

<html>

<head>

<title>

  <bean:message key="login.title"/>

</title>

</head>

<body bgcolor="#FFFFFF">

<html:errors/>



Messages in Application.resources

errors.header=<h3><font color="red"> Validation Error</font></h3> You must
correct the following error(s) before proceeding:<ul>

errors.footer=</ul><hr>





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to