Thanks! This worked wonderfully. I can now see that, for instance, I
typo'd one of my MessageResource names.. instead of the annoying
"exception in struts template:'get' tag. :)
-tak
>Yeah this is a problem with WebLogic, it doesn't propogate tag exceptions.
>Fortunately the struts tags store the actual exception in the request object
>under the key org.apache.struts.action.Action.EXCEPTION_KEY, which you can
>retrieve using the call:
> ... (Throwable)
>request.getAttribute(org.apache.struts.action.Action.EXCEPTION_KEY);
>