========================================================================

              JARV Driver for Xerces-2 XML Schema Validator

========================================================================
                                   By Kohsuke Kawaguchi (kk@kohsuke.org)

What's This?
------------
    This small jar file allows you to use the W3C XML Schema validator
    in Xerces-2 through the JARV interface.
    
    JARV is an easy-to-use Java interface for schema validators. It
    allows you to use a validator without using a parser (for example,
    to validate a document that you are producing.) For more information
    about JARV, go to http://iso-relax.sourceforge.net/JARV/
    
How To Use It?
--------------
    See "src/org/kohsuke/jarv/xerces/Driver.java" file as a starter. For
    more information, see http://iso-relax.sourceforge.net/JARV/JARV.html
    
    You need to have iso-relax.jar and Xerces-2 in your classpath. You
    can either use the one bundled with this package, or you can choose
    other versions if you like. Just make sure that you don't have two
    different Xerces-2, as this will cause all sorts of mysterious
    problems.
    
    If you have any question, please go to
    http://groups.yahoo.com/group/reldeve/
    
Status
------
    This version doesn't support infoset augmentation, though
    theoretically this can be done through VerifierFilter.
    I don't know if it's worth the effort or not, though. Let me know
    your thought.
    
License
-------
    This program is licensed under the MIT license. See copying.txt for
    details. Note that Xerces-2 is covered by the Apache Software License.
    
History
-------
  2002/07/12
    Update to use Xerces-2.0.2
    