Microsoft's XML parser...
Harry Cheung
hcheung at parc.xerox.com
Thu Feb 12 23:50:42 GMT 1998
I'm using Microsoft's Java XML parser(1.8) to
generate xml, and I've run into a hitch. In building a xml document,
I construct a XML document using the object model, adding children
elements, etc. Now, I need to grab a XMLOutputStream from it so
that I may send it on a FileInputStream. However, when I call the
"save" method of Document, the XMLOutputStream returned doesn't
deal with the namespaces and as a result, causes a parse failure when
I try to parse the generated file. Here's a main section of the code:
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
XMLOutputStream xmlstream = doc.createOutputStream(outputStream);
doc.save(xmlstream);
System.err.println("XMLDocument:\n" + new String(outputStream.toByteArray()));
doc is a instance of Document and the output that I print doesn't have the
namespaces substituted. Now, am I going about this all wrong?
Am I missing something?
Harry Cheung
hcheung at parc.xerox.com
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)
More information about the Xml-dev
mailing list