William Lane wrote: > well i cant for the life of me figure out how to get Xerces to make me a > new XML document. is there anyone out there who could help me? i am really > new to XML and Xerces.
Also look into the javax.xml.parsers interfaces that are part of JAXP (and that is implemented by Xerces). There is a method to create an empty DOM document that your application can build up programmatically. In this way you can avoid putting a dependency on the Xerces DOM implementation in your code. -- Andy Clark * [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
