展开肥皂体后无法解析 XMl

Unable to Parse XMl after unwrapping soap body

我一直在努力解析一个xml字符串,但都无济于事

<EnquirySingleItemResponse xmlns="http://tempuri.org/">                  <EnquirySingleItemResult>
    <Response>
      <MSG>SUCCESS</MSG>
      <INFO>TESTING</INFO>
    </Response>   </EnquirySingleItemResult> </EnquirySingleItemResponse>

我的代码 returns null 或 xml 标签中的文本,无论我如何解析它。我检查了一些 post,但它们似乎不起作用。 请参阅下面的代码片段

 XElement anotherUnwrappedResponse = ( from _xml in axdoc.Descendants(tempuri + "EnquirySingleItemResponse")
                                       select _xml).FirstOrDefault();

        string response = anotherUnwrappedResponse.Value;

axdoc.Descendants是因为我拆了皂体,上面有xml

试试这个

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            string input =
            "<EnquirySingleItemResponse xmlns=\"http://tempuri.org/\">" +
                "<EnquirySingleItemResult>" +
                "<Response>" +
                  "<MSG>SUCCESS</MSG>" +
                  "<INFO>TESTING</INFO>" +
                "</Response>   </EnquirySingleItemResult> </EnquirySingleItemResponse>";

            XDocument doc = XDocument.Parse(input);
            string msg = doc.Descendants().Where(x => x.Name.LocalName == "MSG").FirstOrDefault().Value;
            string info = doc.Descendants().Where(x => x.Name.LocalName == "INFO").FirstOrDefault().Value;
        }
    }
}
​