HI,
I have a Text file containing a key=value pairs. I have another XML file which contains the "key" as "Source" Node and "value" as "Destination Node".
<message>
<Source>key</Source>
<Destination>value</Destination>
</message>
Suppose, I get a new text file containing the same keys but different values, how do I go about changing the XML file using the minidom ?
Can this be possible ?
Thanks!