summaryrefslogtreecommitdiff
path: root/ACE/ACEXML/README
blob: f606de4531a2a909302434f3f50322b4354fbc56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


ACE XML PARSER Framework README file

* Character set

ACE XML only deal with pure unicode encoding.  I.e., ACE XML
does not care about language specific encoding information.

* SAX - The Simple API for XML

ACE XML Parser interfaces follows the the design of SAX 2.0, which is
a public domain specification for Java.  The major difference between
ACE XML Parser interfaces and SAX is that we added an reference of
ACEXML_Env to every SAX method to accomodate platforms/compilers that
don't support C++ exceptions.  SAX is defined by David Megginson
<david@megginson.com>