Try this way, and it might works.

Make your action beans all implement "com.opensymphony.xwork2.Preparable", and implement a method "prepare()" in your action beans just like this:
public void prepare() throws Exception
{
 // Clear last error messages
 clearErrorsAndMessages();
}

Everytime when you get into these beans, all error messages are completely removed in the cache. And this seems to be working in many conditions.

_________________________________________________________________
Don't just search. Find. Check out the new MSN Search! http://search.msn.com/


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

Reply via email to