[
Lists Home |
Date Index |
Thread Index
]
- From: Craig Miller <craigm@roninkuma.com>
- To: XML <xml-dev@lists.xml.org>
- Date: Mon, 25 Sep 2000 16:32:01 -0700
I'm currently using the MSXML3.DLL to do processing on an xml file that I
have to create to send back to a client application. The following is my
dtd and xml file:
dtd:
<!ELEMENT mine (list+)>
<!ELEMENT list (#PCDATA)>
xml:
<?xml version="1.0">
<!DOCTYPE mine SYSTEM "my.dtd">
<mine>
<list number="1">Hello</list>
<list number="2">Goodbye</list>
..
..
..
</mine>
Now, in my application COM/ATL object I have created the DOM and all that
stuff. I would like to add the lists to the new document that I created
using appendNode or some other mechanism. I can't seem to get this to work.
If I add just a plain element of <list> then it works fine but if I try to
add an attribute it blows up.
If this is not the appropriate place to ask this question I apologize in
advance.
Thanks for any help you can provide,
Craig
|