Re: Quest on actionInvocation

2008-09-23 Thread Gianluca Musella
thank you ManiKanta, it helps much. 2008/9/23 ManiKanta G <[EMAIL PROTECTED]>: >> in an interceptor is possible to know which action's method is called? > > > You can get the requesting method name by using > invocation.getProxy().getMethod(). > > Similarly you can get the action name: invocation

Re: Quest on actionInvocation

2008-09-23 Thread ManiKanta G
> in an interceptor is possible to know which action's method is called? You can get the requesting method name by using invocation.getProxy().getMethod(). Similarly you can get the action name: invocation.getProxy().getNamespace(). Of cource invocation.getInvocationContext().getName() will also

Quest on actionInvocation

2008-09-23 Thread Gianluca Musella
Hi all, in an interceptor is possible to know which action's method is called? For example, in [...] actionInvocation.getAction() contains an instance of org.almayer.web.action.HomeAction, but how to know about thr called executeSecure? Thanks Gianluca ---