I have following xml mutableData.
<responce xmlns:xsi="http://.." xmlns:xsd="http://..." xmlns="http://...">
<Succeeded id="0">
<uri>userName</uri>
<signatureData>PdppDDD8388OPDJJD==</signatureData>
</Succeeded>
</responce>
And I have written following line of code for parsing the above xml string.
CXMLDocument *doc=[[CXMLDocument alloc]initWithData:responseData options:0 error:nil];
NSArray *nodes=nil;
nodes=[doc nodesForXPath:@"//signatureData" error:nil];
Here responceData is holding above xml string. I have to find signatureData value. But it is sending 0 object in nodes array. What is wrong with the code?