【问题标题】:How to use LINQ to get method name and namespace in a soap request?如何使用 LINQ 在soap 请求中获取方法名称和命名空间?
【发布时间】:2009-10-27 00:56:12
【问题描述】:

如何使用 LINQ to XML 从这个 xml 中提取方法名和命名空间?

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
  xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
  xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
  <soap:Header>
    <wsa:Action>http://www.webserviceX.NET/GetISOCountryCodeByCountyName</wsa:Action>
    <wsa:MessageID>urn:uuid:047f0012-b7d2-408d-bdd7-aa556edf70e8</wsa:MessageID>
    <wsa:ReplyTo>
      <wsa:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:Address>
    </wsa:ReplyTo>
    <wsa:To>    </wsa:To>
    <wsse:Security>
      <wsu:Timestamp wsu:Id="Timestamp-2a4072a3-338c-434a-90ff-5f7d0aa6acbc">
        <wsu:Created>2009-10-22T19:20:22Z</wsu:Created>
        <wsu:Expires>2009-10-22T19:25:22Z</wsu:Expires>
      </wsu:Timestamp>
    </wsse:Security>
  </soap:Header>
  <soap:Body>
    <GetISOCountryCodeByCountyName xmlns="http://www.webserviceX.NET">
      <CountryName>India</CountryName>
    </GetISOCountryCodeByCountyName>
  </soap:Body>
</soap:Envelope>

我需要获取值 GetISOCountryCodeByCountyName 和 http://www.webserviceX.NET

【问题讨论】:

    标签: xml linq parsing soap linq-to-xml


    【解决方案1】:
    public static void ReadXmlUsingLinq()
    {
                XmlDocument xdoc = new XmlDocument();
                xdoc.LoadXml("<?xml version=\"1.0\" encoding=\"utf-8\"?><soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:wsa=\"http://schemas.xmlsoap.org/ws/2004/08/addressing\" xmlns:wsse=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd\" xmlns:wsu=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd\"><soap:Header><wsa:Action>http://www.webserviceX.NET/GetISOCountryCodeByCountyName</wsa:Action><wsa:MessageID>urn:uuid:047f0012-b7d2-408d-bdd7-aa556edf70e8</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>   </wsa:To><wsse:Security><wsu:Timestamp wsu:Id=\"Timestamp-2a4072a3-338c-434a-90ff-5f7d0aa6acbc\"><wsu:Created>2009-10-22T19:20:22Z</wsu:Created><wsu:Expires>2009-10-22T19:25:22Z</wsu:Expires></wsu:Timestamp></wsse:Security></soap:Header><soap:Body><GetISOCountryCodeByCountyName xmlns=\"http://www.webserviceX.NET\"><CountryName>India</CountryName></GetISOCountryCodeByCountyName></soap:Body></soap:Envelope>");
    
                var query = from XmlNode a in xdoc.DocumentElement where a.Name == "soap:Body" select a.FirstChild;
                foreach (XmlNode node in query)
                {
                    Console.WriteLine(node.Name);
                    Console.WriteLine(node.Attributes["xmlns"].Value);
                }
                Console.ReadLine();
    }
    

    【讨论】:

      猜你喜欢
      • 2011-03-23
      • 1970-01-01
      • 2017-04-10
      • 1970-01-01
      • 2019-06-26
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-06-03
      相关资源
      最近更新 更多