[seam-commits] Seam SVN: r13706 - branches/community/Seam_2_2/examples/openid/resources/WEB-INF.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Thu Sep 2 09:44:18 EDT 2010


Author: manaRH
Date: 2010-09-02 09:44:18 -0400 (Thu, 02 Sep 2010)
New Revision: 13706

Modified:
   branches/community/Seam_2_2/examples/openid/resources/WEB-INF/web.xml
Log:
JBSEAM-4691 - added workaround for JBoss AS 6 - use JSF 1.2 instead of default JSF 2

Modified: branches/community/Seam_2_2/examples/openid/resources/WEB-INF/web.xml
===================================================================
--- branches/community/Seam_2_2/examples/openid/resources/WEB-INF/web.xml	2010-09-02 13:14:06 UTC (rev 13705)
+++ branches/community/Seam_2_2/examples/openid/resources/WEB-INF/web.xml	2010-09-02 13:44:18 UTC (rev 13706)
@@ -39,7 +39,7 @@
     </context-param> 
 
     <!-- JSF -->
-    
+   
     <context-param>
         <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
         <param-value>.xhtml</param-value>
@@ -50,6 +50,13 @@
         <param-value>true</param-value>
     </context-param>
     
+  	<!--  this is only for JBoss AS 6 - it contains JSF RI 2.0.2 which has a bug 
+			Remove this if you have upgraded to 2.0.3	-->   
+    <context-param>
+      <param-name>org.jboss.jbossfaces.JSF_CONFIG_NAME</param-name>
+      <param-value>Mojarra-1.2</param-value>
+   </context-param>
+    
     <servlet>
         <servlet-name>Faces Servlet</servlet-name>
         <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>



More information about the seam-commits mailing list