Привет! Я со своего кода обращаюсь к Soap серверу:
SoapService span = new SoapService ();
var rawResults = span.getList("ru");
и он возвращает такой ответ:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns2="http://xml.apache.org/xml-soap" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:countriesListResponse>
<return xsi:type="ns2:Map">
<item>
<key xsi:type="xsd:string">12</key>
<value xsi:type="xsd:string">Test1</value>
</item>
<item>
<key xsi:type="xsd:string">32</key>
<value xsi:type="xsd:string">Test2</value>
</item>
<item>
<key xsi:type="xsd:string">91</key>
<value xsi:type="xsd:string">Test3</value>
</item>
как мне распарсить данные такого типа, как бы в цикле, чтобы мне возвращало key=12 value="Test1" в C#?