views:

131

answers:

1

Hi!

I need to send parameters in my EL Expression.

So i put jboss-el jar.

as well, I added the tag:

<context-param>     
<param-name>org.apache.myfaces.EXPRESSION_FACTORY</param-name>
<param-value>org.jboss.el.ExpressionFactoryImpl</param-value>   
</context-param>

in my web.xml of the project.

But it seems to me that it stil uses the old expression factory!

how can i handle it?

+1  A: 

El expression doesn't work with JSP2.1 in tomcat 6. I had to switch to facelet

Odelya