I'm trying to run my project (normally working on tomcat7) on tomcat6. But JSF can't call methods with parameters now, e.g.
<h:commandLink action="#{bean.setpage('index')}"/>
It works normally on Tomcat7..
Is it possible to call method with parameter on tomcat6?
UPDATE: both answers bellow are correct, and i also had to update context.xml:
<context-param>
<param-name>org.apache.myfaces.EXPRESSION_FACTORY</param-name>
<param-value>com.sun.el.ExpressionFactoryImpl</param-value>
</context-param>
<context-param>
<param-name>com.sun.faces.expressionFactory</param-name>
<param-value>com.sun.el.ExpressionFactoryImpl</param-value>
</context-param>