In your Action class, add following statements before return statement:
ActionMessages oMsgs = new ActionErrors();
oMsgs.add(ActionMessages.GLOBAL_MESSAGE,
new ActionMessage("myValueAdded", "<actual value>"));
saveErrors(oRequest.getSession(), oMsgs);
In your jsp, you must be having <html:errors />
It will work.
It's not an error, it's just a message to the user.
Marcus
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]