Yes, I know :) But I don't want to depend on HttpServletRequest. I would like to have the Request*Map*. Unfortunetely from looking at the code I only found out how to contruct a RequestMap from a HttpServletRequest.

Isn't there some kind of function that provides me with the Map? (Except the IoC RequestAware interface which only works for Actions)


- Thilo

Omkar patil wrote:
Thilo,

You can directly access an HttpServletRequest in the Interceptor using following -

       ActionContext ac = invocation.getInvocationContext();
HttpServletRequest request = (HttpServletRequest) ac.get(ServletActionContext.HTTP_REQUEST);

- Omkar


Thilo Ettelt wrote:
Hey,

somehow I can't find a way to access the RequestMap from within an Interceptor. What is the right way?


- Thilo

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




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



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

Reply via email to