]
Juraj Húska closed RF-12832.
----------------------------
Verified. Closing.
Tomcat 6 test Deployments should define the expressionFactory
-------------------------------------------------------------
Key: RF-12832
URL:
https://issues.jboss.org/browse/RF-12832
Project: RichFaces
Issue Type: Feature Request
Security Level: Public(Everyone can see)
Components: tests - functional
Reporter: Brian Leathem
Assignee: Lukáš Fryč
Fix For: 5.0.0.Alpha1
Original Estimate: 1 hour
Remaining Estimate: 1 hour
JBoss EL is added as a dependency for tomcat deployments, however the expressionFactory
needs to be configured to use the bundled EL implementation.
Without the configuration below, tests that use advanced EL features will fail on
Tomcat.
For Mojarra implementations, the web.xml of the Deployment should contain:
{code}
<context-param>
<param-name>com.sun.faces.expressionFactory</param-name>
<param-value>org.jboss.el.ExpressionFactoryImpl</param-value>
</context-param>
{code}
And MyFaces implementations, the web.xml of the Deployment should contain:
{code}
<context-param>
<param-name>org.apache.myfaces.EXPRESSION_FACTORY</param-name>
<param-value>org.jboss.el.ExpressionFactoryImpl</param-value>
</context-param>
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: