With JSF 2 you should be able to do this:
which would then call the act
You can use JBoss EL.
It's an implementation of Expression Language 2.1. But it has extensions to allow method parameters as in your example:
The advantage is that you only have to change your webapp and not Tomcat's lib directory.
Instructions
lib/jboss-el.jarWEB-INF/lib/jboss-el.jarIn your web.xml set:
com.sun.faces.expressionFactory
org.jboss.el.ExpressionFactoryImpl
See also Invoke direct methods or methods with parameters in EL.