Alternative JSF implementation with JBoss 71

I am trying to use icefaces 1.7.1 in a military application deployed on JBoss 7.0.0.Final

A deployment error with the error "Could not compile stylesheet" in the file icefaces-comp.jar / META-INF / faces-config.xml. I assume this is because JBoss 7 expects me to use the JSF implementation that comes with JBoss 7.

I cannot change or update the JSF implementation.

JBoss 6 allowed legacy applications to add the following to web.xml to exclude the JSF implementation bundled with JBoss:

<context-param> <param-name>org.jboss.jbossfaces.WAR_BUNDLES_JSF_IMPL</param-name> <param-value>true</param-value> </context-param> 

This does not work with JBoss 7.

Does anyone know how to use an alternative JSF implementation with JBoss 7?

Thanks.

+2
java jsf jboss icefaces
source share
1 answer

JBoss 7.0.1.Final is released and fixes this problem, i.e. the org.jboss.jbossfaces.WAR_BUNDLES_JSF_IMPL parameter now works in JBoss 7.0.1.Final.

+4
source share

All Articles