[
Lists Home |
Date Index |
Thread Index
]
> Hi All,
> I need to merge two xml documents and create
> a third document. All the contents from doc1 need to
> be in doc3. Based on some criteria like matching
> elements between doc1 and doc2, some nodes in doc2
> need to be attached to doc3.
> What is the most efficient way to do this.
> xsl? or dom? or jaxb etc.
> ex: doc1.xml
> <a>
> <b id="xx" id1="yy"/>
> <c id="aa" id1="bb"/>
> <d ...>
> </a>
>
> doc2.xml
> <test>
> <test1 id="xx" id1="yy">
> <i1>
> <i2>
> <i3>
> </test1>
> <test2>
> <test3>
> </test>
>
> Doc3.xml should be
> <a>
> <b id="xx" id1="yy"/>
> <test1 id="xx" id1="yy">
> <i1>
> <i2>
> <i3>
> </test1>
> <c id="aa" id1="bb"/>
> <d ...>
> </a>
>
> Thanks
> ------
__________________________________________________
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com
|