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.
java jsf jboss icefaces
user896805
source share