parsing xml in visual c++

sameerpatra

New Member
I want to get the node values of the xml string in a visual c++ codeMy vc++ code is something like thisurl= _T("http://www.xyz.com/val");CString result = g_pCAddonHandler->SendWebRequest(url, L"GET", L"", false);// I send a request to a web url it returns an xml string and the format of xml is belowresponseresult name="response" numFound="1" start="0"docstr name="id">497888/strstr name="lastName" Ross /strstr name="name" Holly /str/doc/result/responseNote:- I have not used < & > because stackoverflow doesn't allow these.Please help in getting all the nodes.I am relatively new in VC++.RegardsAnil
 
Back
Top