Hi, I am using XML 2.6 under C++. I have huge document that I have to search for specific tags. For example
<info>
<profile>
<Name age="20">Rachel<Name/>
<Name age="22">John<Name/>
<profile/>
</info>

when I seach the above document for Name tag, I should be given those two nodes. What function can I use to do this?
Also, what function do I use to get the attribute of these nodes?

Thank you,