Dear all, I need to modify an existing application that uses DOM to parse XML data and stores it in a database.
This application now needs to be capable of processing XML files larger than 1Gb, so I can no longer use DOM as the main parser. The upside is that the file contains thousands of the same kind of elements, which are relatively small on their own (500Kb). Is it possible to parse the file using SAX and then at certain elements parse that element and it's children using DOM? I am quite new at xerces and only have basic knowledge of SAX and DOM. Any examples would be greatly appreciated. Thanks, Patrick Rotsaert
