Я прочитал и перепробовал много тем - этот ответ , этот и этот ответ . Тем не менее, они не применимы ко мне, поскольку у меня действительно не обычно xml:
var xmlString = @"<?xml version=""1.0"" encoding=""windows-1251""?>
<GetReply>
<InformOne>87</InformOne>
<InfoReply>
<![CDATA[<?xml version='1.0' encoding='UTF-8'?>
<S:Container xmlns:S=""http://schemas.xmlsoap.org/soap/envelope/"">
<S:Body>
<ns2:getReference31IPOResponse xmlns:ns2 = ""http://service.one.com/"" >
<return>
<reference31_1IPO xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xsi:nil=""true""/>
<reference31_2IPO xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xsi:nil=""true""/>
<amount>0</amount>
<codeTypeObject>0</codeTypeObject>
<returnCode>4</returnCode>
<errorCode>0</errorCode>
<errorMessage>Something was wrong</errorMessage>
<title>Foo Data</title>
</return>
</ns2:getReference31IPOResponse>
</S:Body>
</S:Container>]]>
</InfoReply>
</GetReply>";
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(xmlString);
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(xmlString);
var errorMessage = xmlDoc.SelectSingleNode("/GetReply/InformOne/InfoReply/CDATA/S:Container/S:Body/ns2:getReference31IPOResponse/return/errorMessage");
Однако я вижу следующую ошибку:
'Выражение должно быть оценено как набор узлов. '
Кроме того, я даже пытался получить InfoReply
, но ошибка та же:
var errorMessage = xmlDoc.SelectSingleNode("/GetReply/InformOne/InfoReply/");
Я хочу прочитать текст на errorMessage
узел?
Не могли бы вы сказать мне, пожалуйста, что я делаю не так? Любая помощь будет принята с благодарностью.
Похоже, <![CDATA[<?xml version='1.0' encoding='UTF-8'?>
прерывает чтение остальных узлов.