Shale + tiles

Hi, I've to do a new web application and I think about jsf+shale+tiles.Someone could point me to an example about shale-tiles integration, I do some pages but I get a DispatchError...Thankslussoluca
[227 byte] By [lussolucaa] at [2007-10-3 3:30:54]
# 1

first make sure you are using Tiles stand-alone (in Struts Sandbox)

add the follwoing servlet to your web.xml

<servlet>

<servlet-name>Tiles Servlet</servlet-name>

<servlet-class>org.apache.tiles.servlet.TilesServlet</servlet-class>

<load-on-startup>1</load-on-startup>

</servlet>

add the following context-param to your web.xml

<context-param>

<param-name>tiles-definitions</param-name>

<param-value>/WEB-INF/tiles.xml</param-value>

</context-param>

add the following to your faces-config.xml

<view-handler>org.apache.shale.tiles.TilesViewHandler</view-handler>

add the following dependency to your pom.xml

<dependency>

<groupId>org.apache.shale</groupId>

<artifactId>shale-tiles</artifactId>

<version>1.0.3</version>

</dependency>

that should be it.

Khaled

javabk76a at 2007-7-14 21:24:53 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Do you know if using JSF with stand-alone Tiles helps with the JSF/JSP dynamic include issues? Specifically is the <f:verbatim> tag still required around non-JSF code so that the page is rendered in the correct order?
blueheela at 2007-7-14 21:24:53 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...