> 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 returns the same. ActionContext.getContext().getName() may be useful some times. Using invocation.getProxy().getXXX methods, you can get some other which you have interest. Hope this helps. ManiKanta