Darren Hartford wrote:
Hey all,
I'm trying to use the myfaces-extensions with JSC, but on deployment I'm
having some problems with the ISBNValidator. Can myfaces-extensions be
used with the Sun JSF RI implementation?
Thanks,
-D
A quick check on the ISBN Validator class revealed, it has hooks into
org.apache.validator
public ISBNValidator(){
isbnValidator = new org.apache.commons.validator.ISBNValidator();
}
You might have to add that package to your classpath, or bundle it with you.
And there is a hook via an import into the myfaces messageutils....
but besides that everything hooks properly into the jsf api.