S
Stan SR
Hi,
I have an xml file with these nodes
<soap:Envelope xmlns:soap="http://blabla">
<soap:body>
<ProcessResponse xmlns="http://anotherblabla">
<myResult>
<data _1>1</dada_1>
<data_2>2</data_2>
</myResult>
</ProcessResponse>
</soap:Body>
<soap:Envelope>
I need to perform a selectNode on myResult
Like
XmlNodeList
nodes=doc.SelectNodes("/Envelope/body/ProcessResponse/myResult");
But I m blocked with the different namespaces (blabla and anotherblabla).
How can get my nodes selection when there are namespaces on some nodes ?
Thanks
Stan
I have an xml file with these nodes
<soap:Envelope xmlns:soap="http://blabla">
<soap:body>
<ProcessResponse xmlns="http://anotherblabla">
<myResult>
<data _1>1</dada_1>
<data_2>2</data_2>
</myResult>
</ProcessResponse>
</soap:Body>
<soap:Envelope>
I need to perform a selectNode on myResult
Like
XmlNodeList
nodes=doc.SelectNodes("/Envelope/body/ProcessResponse/myResult");
But I m blocked with the different namespaces (blabla and anotherblabla).
How can get my nodes selection when there are namespaces on some nodes ?
Thanks
Stan