需要命名空间管理器或XsltContext

时间:2011-08-17 05:23:24

标签: c# xml

我有以下xml;

   <env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'>
   <env:Header>
       <mm7:TransactionID xmlns:mm7='http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-6-MM7-1-4' env:mustUnderstand='1'>6797324d</mm7:TransactionID>
   </env:Header>
   <env:Body>
       <DeliveryReportReq xmlns='http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-6-MM7-1-4'>
           <MM7Version>6.8.0</MM7Version><MMSRelayServerID>TARAL</MMSRelayServerID>
           <MessageID>T*3*T\*4\*855419761</MessageID>
           <Recipient>
               <RFC2822Address>+61438922562/TYPE=hidden</RFC2822Address>
           </Recipient>
           <Sender>
               <RFC2822Address>61418225661/TYPE=hidden</RFC2822Address>
           </Sender>
           <Date>2011-08-15T12:57:27+10:00</Date>
           <MMStatus>Retrieved</MMStatus>
           <StatusText>The message was retrieved by the recipient</StatusText>
       </DeliveryReportReq>   
   </env:Body>
 </env:Envelope>

那么我有以下c#代码;

XmlDocument xDoc = new XmlDocument();
xDoc.LoadXml(file);
XmlNode xNode = xDoc.SelectSingleNode("env:Envelope");

我得到了错误;

  

需要命名空间管理器或XsltContext。此查询具有前缀,变量或用户定义的函数。

任何人都知道如何解决这个问题?

1 个答案:

答案 0 :(得分:12)

就我个人而言,我会使用LINQ to XML - 它的命名空间支持更容易处理。目前尚不清楚为什么你想在这里使用XPath,因为Envelope只是根节点 - 为什么不只是要求根节点

但是,如果确实想要使用XPath,您可以从XmlNamespaceManager中的名称表创建一个新的XmlDocument,注册一个前缀,然后传入命名空间管理器到SelectSingleNode overload which takes one

this answer中有一些示例代码,但我再次强烈建议您考虑其他方法,尤其是使用LINQ to XML,其中搜索(比如说)所有“env:Body “元素(这里只有一个,但......)看起来像这样:

XNamespace env = "http://schemas.xmlsoap.org/soap/envelope/";
var bodies = doc.Descendants(env + "Body");