1 ACE XML PARSER Framework README file
5 ACE XML only deal with pure unicode encoding. I.e., ACE XML
6 does not care about language specific encoding information.
8 * SAX - The Simple API for XML
10 ACE XML Parser interfaces follows the the design of SAX 2.0, which is
11 a public domain specification for Java. The major difference between
12 ACE XML Parser interfaces and SAX is that we added an reference of
13 ACEXML_Env to every SAX method to accommodate platforms/compilers that
14 don't support C++ exceptions. SAX is defined by David Megginson