> I have a faces-config file that resides in the META-INF folder in a
> jar file that gets automatically parsed by the FacesConfigurator on
> startup.
>
> Here comes the weirdness:
>
> I havea couple of validator entries in that faces-config file that
> cause the digester to bring certain elements in out of order, and skip
> some elements all together.
I've seen similar behavior but I was using the wildcard xpath.
digester.addObjectCreate(
"*/validator",
com......ValidatorBean.class);
digester.addSetProperties("*/validator");
digester.addSetNext(
"*/validator",
"addValidator",
"com.......ValidatorBean");
I was able to reorder the sequence of registering the rules and it fixed the
problem? I didn't take the time to understand the significance of sequence
when adding rules. You might try registering before the renderkit, if your not
already?
Gary