|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] No Subject
Greetings,
I am a relative newbie to XML, so please bear w/ me if this is a poor
question...
It looks like everything in the DOM must be dealt w/ in the context of a
particular document. It seems you cannot drop one Document into another, or
even one DocumentFragment into another Document context. I have tried to do
the following... (using Microsoft's implementation of the DOM)
IXMLDOMDocument doc = (IXMLDOMDocument) new DOMDocument();
IDOMDocumentFragment docFrag = doc.createDocumentFragment();
IDOMElement userElem = doc.createElement("USER");
userElem.setAttribute("TIMESTAMP", new Variant("123456") );
docFrag.appendChild( userElem );
doc.appendChild( docFrag );
System.out.println( doc.getXml() ); // >>>> Yields the
correct results
IXMLDOMDocument doc2 = (IXMLDOMDocument) new DOMDocument();
doc2.appendChild( docFrag );
System.out.println( doc2.getXml() ); // >>>> Yields an
empty string
It seems like this should work to me. Shouldn't we be able to cut and paste
between documents?? Or more important, shouldn't we be able to build up
documents compositionally?? I.e. compose Address 1 and Address 2 as
DocumentFragments (or their own Documents -- with their own DTDs) and then
drop these into, say, User (providing that the User DTD agrees).
I must be missing something here.
Thanks in advance,
Cheers,
-- Chris
Chris Berry cberry@w... 512-231-1341
works.com 6850 Austin Center Blvd. Austin, TX 78731
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i...
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo@i... the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@i... the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@i...)
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||

Cart








