Alvaro Martin wrote: > Any other way of reducing size? > I need schema validation, so I'm using DTDXSParserConfiguration
The XML Schema code uses the DOM, so you can't drop the W3C DOM interfaces or our DOM implementation. We do this mostly for convenience. However, even if we built internal data structures, we'd still have all the new code required for these data structures. So using the DOM isn't too bad. If you didn't need XML Schema support, though, you could drop the W3C DOM interfaces, our DOM implementation, and most of the validation implementation which is related to validating documents based on XML Schema grammars. -- Andy Clark * IBM, TRL - Japan * [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
