Help in merging 2 or more xml's

K

Ked

Any help in this matter will be gr8!!

I have 1 XML file:

I am giving the example:

<emails>
<email>
<clients>
<client>
<clientId>12345</clientId>
<extClientId>34567</extClientId>
</client>
</clients>
<emailaddress>[email protected]</emailaddress>
<MailingPreference>Weekly once<MailingPreference>
</email>
<email>
<clients>
<client>
<clientId>35690</clientId>
<extClientId>455454</extClientId>
</client>
</clients>
<emailaddress>[email protected]</emailaddress>
<MailingPreference>Weekly once<MailingPreference>
</email>
<email>
<clients>
<client>
<clientId>544554</clientId>
<extClientId>98725</extClientId>
</client>
</clients>
<emailaddress>[email protected]</emailaddress>
<MailingPreference>Weekly once<MailingPreference>
</email>

</emails>

I would like to merge these 2 XML structures. Do observe that the
clients tag information is different for first 2 XML structures, but
rest is the same. Hence I would like to merge them together. 3rd
structure has completely different info. hence keep it seperate.

Basically I would like to get a XML like:
<emails>
<email>
<clients>
<client>
<clientId>12345</clientId>
<extClientId>34567</extClientId>
</client>
<client>
<clientId>35690</clientId>
<extClientId>455454</extClientId>
</client>
</clients>
<emailaddress>[email protected]</emailaddress>
<MailingPreference>Weekly once<MailingPreference>
</email>
<email>
<clients>
<client>
<clientId>544554</clientId>
<extClientId>98725</extClientId>
</client>
</clients>
<emailaddress>[email protected]</emailaddress>
<MailingPreference>Weekly once<MailingPreference>
</email>
</emails>

Is it possible?..Can anyone suggest a quick solution. Thanks a lot in
advance!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,046
Latest member
Gavizuho

Latest Threads

Top