2009/9/3 bejaoui zied <[email protected]>:
> My tiles are actually working fine the only thing is that I want to use a jsf
> file as a body of tiles definition as mentioned in my first mail, however the
> JSF files is not showing up, is there any configuration to be done in order
> to be able to use JSF files as a part of the tiles definition?
Starting from your definition:
<definition name="filepage" template="/example/template.jsp">
...
<put-attribute name="body" value="/upload/home1.jsp" />
</definition>
I see that you are putting the JSP pages, not "pre-processed" by JSF
engine. You should give the faces URL, in your case:
<put-attribute name="body" value="/faces/upload/home1.jsp" />
See if this approach works.
Antonio
P.S. I am still waiting for version numbers of Tiles and JSF.