Loading

XPath遇上命名空间xmlns

string xml = "";
XmlDocument xmldoc = new XmlDocument();
xmldoc.LoadXml(xml);
XmlNamespaceManager xnm = new XmlNamespaceManager(xmldoc.NameTable);
xnm.AddNamespace("SOAP-ENV","http://schemas.xmlsoap.org/soap/envelope/");
xnm.AddNamespace("Mo","http://www.monternet.com/dsmp/schemas/");
xmldoc.SelectNodes("//SOAP-ENV:Header/Mo:TransationID",xnm);//注意,就算是用默认命名空间的节点,也要为命名空间定义一个名字,并使用这个名字。
今天知道xmlns这个东西叫命名空间了。
posted @ 2009-04-29 12:14  today4king  阅读(575)  评论(0编辑  收藏  举报