The latest CVS image and daily build has been updated to the latest version of MSV - 1.12 - Nov 1 2001.
http://www.sun.com/xml In addition the MSVDemo has been replaced by a JARVDemo at dom4j/src/samples/validate/JARVDemo.java which demonstrates how to validate an existing dom4j document against any schema language, DTD, XML Schema, RelaxNG, Relax or Trex. The example now uses the JARV API and uses MSV as the implementation of the JARV API. For more details on JARV try this link.. http://iso-relax.sourceforge.net/JARV/ JARV can also be used to validate a dom4j document as its being parsed with SAXReader by installing an XMLFilter. // make Verifier using JARV Verifier verifier = ...; VerifierFilter filter = verifier.getVerifierFilter(); // parse dom4j document SAXReader reader = new SAXReader(); reader.setXMLFilter( filter ); Document doc = reader.read( "foo.xml" ); James _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com _______________________________________________ dom4j-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/dom4j-user
