从 XMLDOCUMENTt 中删除 SOAP Envelepoe 和soap Body 元素

发布于 2024-11-18 08:45:05 字数 377 浏览 1 评论 0原文

有没有一种简单的方法可以删除

    <soap:Envelope xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2000/10/XMLSchema">
       <soap:Body>
           <input1>jsdhkfh</input1>
       </soap:Body>
    </soap:Envelope>

TO

<input1>jsdhkfh</input1>

我需要转换的 XMLDocument 对象。

is there a easy way to remove the

    <soap:Envelope xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2000/10/XMLSchema">
       <soap:Body>
           <input1>jsdhkfh</input1>
       </soap:Body>
    </soap:Envelope>

TO

<input1>jsdhkfh</input1>

i have XMLDocument object that i need to transform.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

今天小雨转甜 2024-11-25 08:45:05

直接输入,因此可能会有一些语法错误,但至少给你一个想法。

XMLDocument document = ...
 XmlNamespaceManager nsmgr = new XmlNamespaceManager(document.NameTable);
nsmgr.AddNamespace("soap", "http://schemas.xmlsoap.org/soap/envelope/");
document.loadxml(document.DocumentElement.SelectSingleNode("soap:Body",nsmgr).ChildNodes[0].OuterXml);

typing directly thus there could be some syntactic errors but atleast give you the idea.

XMLDocument document = ...
 XmlNamespaceManager nsmgr = new XmlNamespaceManager(document.NameTable);
nsmgr.AddNamespace("soap", "http://schemas.xmlsoap.org/soap/envelope/");
document.loadxml(document.DocumentElement.SelectSingleNode("soap:Body",nsmgr).ChildNodes[0].OuterXml);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文