Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / ACE / ACEXML / README
blob5bf6751f36fc909cebd409cbd0389f77d80d446a
1 ACE XML PARSER Framework README file
3 * Character set
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
15 <david@megginson.com>