I am trying to access the action errors within a
JSP (using el) but don't know how to do this. I can
test to see if any exist via:
<s:if test="hasActionErrors()">
...
</s:if>
but I want to then be able to iterate through the list of error messages and can't quite see how to.
Any help much appreciated.