Invoking a utility method from JSF tag

I'm attempting to invoke a utility method from JSF tag and pass it a backing bean property, something like:

<h:outputText value="#{bean.property}" rendered="#{utility.booleanMethod(#{bean.property})}" />

I'm getting EL parser errors for the above -

Caused by: org.apache.commons.el.parser.ParseException: Encountered "(" at line 1, column 38.

Is there any way to accomplish this ?

[420 byte] By [Ori_Kremera] at [2007-9-25]
# 1
You cannot invoke methods with parameters using EL
amitteva at 2007-7-14 > top of java,Enterprise & Remote Computing,Web Tier APIs...
# 2

Use f:attribute. Also see http://balusc.xs4all.nl/srv/dev-jep-com.html

Another way:

public boolean isBooleanMethod() {

Object property = bean.getProperty();

...

}

BalusCa at 2007-7-14 > top of java,Enterprise & Remote Computing,Web Tier APIs...