Hi Thiago... sorry about half answers... just trying to do things concurrently.
Ok here i s my web.xml really not doing anything else <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <display-name>pphl</display-name> <context-param> <!-- The only significant configuration for Tapestry 5, this informs Tapestry of where to look for pages, components, mixins and entities. --> <param-name>tapestry.app-package</param-name> <param-value>org.tynamo.examples.pphl</param-value> </context-param> <!-- Specify some additional Modules for two different execution modes: development and qa. Remember that the default execution mode is production --> <context-param> <param-name>tapestry.production-modules</param-name> <param-value>org.tynamo.examples.pphl.services.AppModule</param-value> </context-param> <context-param> <param-name>tapestry.development-modules</param-name> <param-value> org.tynamo.examples.pphl.services.AppModule </param-value> </context-param> <context-param> <param-name>tapestry.qa-modules</param-name> <param-value> org.tynamo.examples.pphl.services.AppModule </param-value> </context-param> <context-param> <param-name>tapestry.production-mode</param-name> <param-value>false</param-value> </context-param> <filter> <filter-name>app</filter-name> <filter-class>org.apache.tapestry5.TapestryFilter</filter-class> </filter> <filter-mapping> <filter-name>app</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <session-config> <session-timeout>90</session-timeout> </session-config> <resource-ref> <description>MySQL Datasource</description> <res-ref-name>jdbc/tpphl</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref> </web-app>