I have following XML string:
<persons>
<person>
<name>Someone</name>
<age>27</age>
</person>
<person>
<name>Otherone</name>
<age>43</age>
</person>
</persons>
I want to take this string and to get from it a DOM object. It could be any XML string (not from file!).
Sorry for this newbie question,Thanks a lot for helpers.