Chris Cheung <[EMAIL PROTECTED]> writes: > Dear Jason, > > On Tue, 22 Jun 2004, Jason E. Stewart wrote: > >> Chris Cheung <[EMAIL PROTECTED]> writes: >> >> > My project uses both DOM parsing and SAX parsing. DOM parsing is for >> > some small-scale XML configuration file and the application will >> > traverse the DOM Tree directly using the API of XML-Xerces. We use >> > SAX for parsing some VERY LARGE XML data file which transform the >> > XML data into some Perl data structure with filtering. >> > >> > I will try to list all API we are currently as soon as possible. >> >> There are 5 major API's that I need to consider: >> >> * XercesDOMParser >> * DOMBuilder >> * SAXParser >> * SAX2XMLReader >> * DOMWriter >> > > Thank you very much for your help. > > The APIs which our project uses are listed as follows. > (Sorry that I just grep them from source code, but the class and method > name should be obvious) > If you find that we used Xerces-Perl inappropreately somewhere or have > some better suggestion, please kindly let us know.
Ok, it looks like you're using XercesDOMParser and not the new DOM Level 3 system, DOMBuilder. You are using the DOM Level 3 serialization, DOMWriter. And you are using SAX Level 2, XMLReader. Cheers, jas. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
