On Mon, Mar 17, 2008 at 10:06 AM, GF <[EMAIL PROTECTED]> wrote:
> I have some data stored in #application.mymap
> Inside and interceptor I want to put some of this data in
> #request.anothermap
>
> How can I access them?
> About the #request, is it right to do this?
>
> final ActionContext context = invocation.getInvocationContext();
> request = (HttpServletRequest) context.get(HTTP_REQUEST);
> request.setAttribute("anothermap", anotherMap);
>
>
> Ok, I have found this is right.
I'm still searching how to access #application map from the Interceptor..