2014-11-10 16:30 GMT+01:00 Volker Krebs <volker.kr...@abas.de>: > https://github.com/VolkerK/struts-examples/ > branch develop
Thanks a lot for the example, it was very helpful! Btw. you can prepare a PR to push it to the struts-example project :-) One remark, you cannot use such configuration: <interceptor-ref name="params"> <param name="params">someParameter</param> </interceptor-ref> <interceptor-ref name="basicStack"/> as in such case params interceptor will run two times - first as a part of defaultStack and second time as a part of basicStack, you must use it that way <interceptor-ref name="basicStack"> <param name="params.acceptParamNames">someParameter</param> </interceptor-ref> in such case, action will be executed with basicStack with modified acceptParamNames Regards -- Ćukasz + 48 606 323 122 http://www.lenart.org.pl/ --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org For additional commands, e-mail: dev-h...@struts.apache.org