RE: Struts 2.1.6 - custom interceptor

2009-02-27 Thread Prasad M
hat because your call to callme() is not working > > > Regards > -- > Lukasz > http://www.lenart.org.pl/ > > - > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org > For additional commands,

RE: Struts 2.1.6 - custom interceptor

2009-02-26 Thread Prasad M
hat because your call to callme() is not working > > > Regards > -- > Lukasz > http://www.lenart.org.pl/ > > - > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org > For additional commands,

Re: Struts 2.1.6 - custom interceptor

2009-02-09 Thread Greg Lindholm
e your call to callme() is not working > > > Regards > -- > Lukasz > http://www.lenart.org.pl/ > > - > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org > For additional commands, e-mail: u

Re: Struts 2.1.6 - custom interceptor

2009-02-09 Thread Lukasz Lenart
2009/2/9 Prasad Mangina : > Dear All, > > i have programmed a simple (custom) interceptor. > > placed logic in post action invocation. > > public String doIntercept(ActionInvocation invocation) throws Exception { > >Object action = invocation.getAction(); > >String ret = invocation.invo

Struts 2.1.6 - custom interceptor

2009-02-09 Thread Prasad Mangina
Dear All, i have programmed a simple (custom) interceptor. placed logic in post action invocation. public String doIntercept(ActionInvocation invocation) throws Exception { Object action = invocation.getAction(); String ret = invocation.invoke(); if (action instanceof MyAwa