2007/11/7, Amit Rana <[EMAIL PROTECTED]>:
>
> Tiles is decorating jsps but not the out put from an action.
> ...
> <action name="home" class="com.tj.actions.HomeAction">
> <result>jsp/home.jsp</result>
> </action>
>
>Just to be sure, did you try to remove the TilesDecorationFilter and see if
>your action works?
>Antonio
Yes action works if I remove TilesDecorationFilter.
Action also works if I reverse the order of filters i.e. below works
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>tilesdecoration</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
If I reverse the order then I can only see the layou and not the
result of action.
Any suggestions?