Re: MESSAGES_KEY not found in request

2005-02-15 Thread René Thol
I finally found them. After going through some struts sources. The messages are stored under: session.getServletContext().getAttribute(Action.MESSAGES_KEY) I was mislead by some examples in the web where you are told to fetch them via: request.getAttribute(Action.MESSAGES_KEY); Best regards René

MESSAGES_KEY not found in request

2005-02-15 Thread René Thol
Hello again, since I'm stuck to struts1.0.2 and there's no way to disable filtering when using bean:message I'm trying to access MessageResources directly within my JSPs. But there is no entry regarding the Action.MESSAGES_KEY. Neither within the request nor within the session. I'm going throug