0

我正在尝试使用接受 XmlDocument 并返回 XmlDocument 的 Web 服务/方法。当我将此 Web 服务的引用添加到我的 C# 应用程序时,代理代码被定义为使用 XmlNodes 而不是 XmlDocuments。这似乎是相当公认的行为(但确认和/或解释会很好 - 请参见此处

但是,如果我获取返回的 XmlNode 对象并尝试对“SelectNodes(XPath)”进行简单的 XPath 查询,我找不到任何节点 - 但匹配的节点确实存在。

但是,如果我使用返回的 XmlNode 的 OuterXml,并从中创建一个新的 XmlDocument,我的 XPath 查询会找到我期望的节点。

这是为什么 ?返回的 XmlDocument/XmlNode (或之间的转换)阻止 XPath 查询按预期工作的原因是什么?

谢谢。

编辑: Xml 看起来像这样:

<Results xmlns="">
  <Result>
     :
    <Success>True</Success>
  </Result>
  <Result>
     :
    <Success>False</Success>
  </Result>
</Results>

...而 XPath 看起来像这样...

Dim xPath As String = "//Result[Success='False']"

If (xmlResults.SelectNodes(xPath).Count > 0) Then
    Throw New ApplicationException("Results returned indicate a problem:- " + xmlResults.OuterXml)
End If
4

1 回答 1

0

创建我自己的 XmlDocument 的一种替代方法是使用 Linq,如下所示:

Dim results As XDocument = XDocument.Parse(xmlResults.OuterXml)

If (results.Descendants("Success").Count(Function(node) node.Value.ToLower() = "false") > 0) Then
    Throw New ApplicationException("Results returned indicate a problem:- " + xmlResults.OuterXml)
End If
于 2013-09-12T08:09:08.870 回答