As I already wrote: "Should you try the same - don't forget to remove myfaces JSF1.2 from war and accordingly remove startup listener from web.xml." JSF 1.2 spec requires JSF impl to be generally server-provided, if there are both project- and server-level JSF implementations then server's take precedence (JSF gurus, pls, correct me if I'm wrong here). So: 1. you must delete both myfaces-1.2.0-impl.jar and myfaces-1.2.0-api.jar from WEB-INF/libs/ of trinidad examples war 2. you must remove <listener>...</listener> from web.xml And only after that deploy application on the server.
aj1m wrote: > because while trying exemple of trinidad 1.2.2 on jboss 4.2.1 i get this > error: > ( WARN [org.jboss.web.jsf.integration.config.JBossJSFConfigureListener] > MyFaces JSF implementation found! This version of JBoss AS ships with the > java.net implementation of JSF. There are known issues when mixing JSF > implementations. This warning does not apply to MyFaces component libraries > such as Tomahawk. However, myfaces-impl.jar and myfaces-api.jar should not > be used without disabling the built-in JSF implementation. See the JBoss > wiki for more details.) >

