How to use many variable-resolver or property-resolver (JSF)

Hello,

Somebody know a way to define more than one PropertyResolver/VariableResolver in the faces-config.xml ? (if possible)

In my case, I would like to use the SelectItemsVarResolver/SelectItemsPropResolver from ibm-jsf.jar and the

SecurityVariableResolver/SecurityPropertyResolver from jsf-security.zip (http://www.groundside.com)

I try with the code below, but doesn't work...

<application>

<variable-resolver>com.ibm.faces.databind.SelectItemsVarResolver</variable-resolver>

<property-resolver>com.ibm.faces.databind.SelectItemsPropResolver</property-resolver>

<variable-resolver>ch.generali.mp.jsf.el.SecurityVariableResolver</variable-resolver>

<property-resolver>ch.generali.mp.jsf.el.SecurityPropertyResolver</property-resolver>

</application>

[880 byte] By [jean-philippea] at [2007-10-2 5:34:55]
# 1
No Solution?
jean-philippea at 2007-7-16 1:45:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
How about developing your own custum resolversthat decide which of existing two kinds of resolvers should be usedand delegate the process to them?
yuki.yoshidaa at 2007-7-16 1:45:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
Thanks yoshida,I would like to avoid to develop my own custum resolvers.But, I think that I don't have the choice.Now, i'm looking for an example : A custom resolver delegating the process to an other resolver...
jean-philippea at 2007-7-16 1:45:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
Hi, I have written a custom resolver, you can find the tutorial and the codes at; http://www.jroller.com/page/cagataycivici?entry=how_to_write_your_ownRegards,Cagatay Civici
CagatayCivicia at 2007-7-16 1:45:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...