I have following xml document
<Node id="1" name="name1" autoplayTrailer="false" visible="true" bgimages="false">
<Text>
<title id="2" type="text" hideineditor="false" visible="true"><![CDATA[Link]]></title>
<sections id="3" default="consideration">
<songs id="4" type="text" hideineditor="false" enabled="true" visible="true">
<![CDATA[
<div class="ThumbContainer">
Some text here
</div>
]]>
<songsTitle><![CDATA[sometexthtml here]]></songsTitle>
</songs>
</sections>
</Text>
</Node>
I want to read the content/node
one by one and modify the CDATA
content and write the xml to disc.
Problem is i am not able to write the CData for <songs>
node becoz it has another node inside <songTitle>
node without closing the </song>
node is it possilbe to write node with CData having another node following CData content?