无法使用C#从Soap响应中获取值

时间:2019-03-31 11:55:42

标签: c# soap

下面我的肥皂反应很安静。

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:doCommandResponse xmlns:ns2="http://soap.inf.hexing.cn">    <return>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;ResponseMessage xmlns=&quot;http://iec.ch/TC57/2011/schema/message&quot; xmlns:m=&quot;http://iec.ch/TC57/2011/MeterReadings#&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:schemaLocation=&quot;http://iec.ch/TC57/2011/schema/message Message.xsd&quot;&gt;
 &lt;Header&gt;
   &lt;Verb&gt;created&lt;/Verb&gt;
    &lt;Noun&gt;MeterReadings&lt;/Noun&gt;
   &lt;Timestamp&gt;2019-03-31T15:54:12+04:30&lt;/Timestamp&gt;
  &lt;Source&gt;HES_BASE&lt;/Source&gt;
 &lt;AsyncReplyFlag&gt;true&lt;/AsyncReplyFlag&gt;
&lt;ReplyAddress&gt;http://192.168.15.2:8090/HES/services/DoCommandRequest?wsdl&lt;/ReplyAddress&gt;
&lt;AckRequired&gt;true&lt;/AckRequired&gt;
  &lt;User&gt;
     &lt;UserID&gt;abc&lt;/UserID&gt;
  &lt;/User&gt;
&lt;Property&gt;
  &lt;Name&gt;password&lt;/Name&gt;
    &lt;Value&gt;2222&lt;/Value&gt;
 &lt;/Property&gt;
 &lt;MessageID&gt;2AB290AE-5DBC-414D-8C5D-70836514E736&lt;/MessageID&gt;
 &lt;CorrelationID&gt;String&lt;/CorrelationID&gt;
&lt;/Header&gt;
&lt;Reply&gt;
&lt;Result&gt;OK&lt;/Result&gt;
&lt;Error&gt;
&lt;code&gt;0.0&lt;/code&gt;
&lt;/Error&gt;
&lt;/Reply&gt;
&lt;Payload&gt;
&lt;m:MeterReadings&gt;
&lt;m:MeterReading&gt;
&lt;m:valuesInterval&gt;
 &lt;m:end&gt;2019-03-31T00:00:00+04:30&lt;/m:end&gt;
 &lt;m:start&gt;2019-03-01T00:00:00+04:30&lt;/m:start&gt;
 &lt;/m:valuesInterval&gt;
 &lt;m:Meter&gt;
  &lt;m:Names&gt;
        &lt;m:name&gt;37030298060&lt;/m:name&gt;
     &lt;m:NameType&gt;
       &lt;m:name&gt;28373341367200U&lt;/m:name&gt;
    &lt;/m:NameType&gt;
  &lt;/m:Names&gt;
  &lt;m:mRID&gt;002997004330&lt;/m:mRID&gt;
  &lt;/m:Meter&gt;
  &lt;m:Readings&gt;
  &lt;m:ReadingType ref=&quot;13.8.0.6.1.1.12.0.0.0.0.0.0.0.224.3.38.0&quot;/&gt;
  &lt;m:ReadingQualities&gt;
   &lt;m:ReadingQualityType ref=&quot;2.5.259&quot;/&gt;
 &lt;/m:ReadingQualities&gt;
&lt;m:timePeriod&gt;
   &lt;m:end&gt;2019-03-31T00:00:00+04:30&lt;/m:end&gt;
   &lt;m:start&gt;2019-03-01T00:00:00+04:30&lt;/m:start&gt;
&lt;/m:timePeriod&gt;
&lt;m:value&gt;55.588&lt;/m:value&gt;
&lt;m:timeStamp&gt;2019-03-21T00:00:00+04:30&lt;/m:timeStamp&gt;
&lt;/m:Readings&gt;
&lt;/m:MeterReading&gt;
&lt;m:Reading/&gt;
&lt;/m:MeterReadings&gt;
&lt;/Payload&gt;
&lt;/ResponseMessage&gt;
</return></ns2:doCommandResponse></soap:Body></soap:Envelope>

从上面的答复中,我想从上面的答复中获取一些数据。以下是我的代码

 if (dt != null && dt.Rows.Count > 0)
        {
            totalRec = dt.Rows.Count;
            timer.Start();
            foreach (DataRow dr in dt.Rows)
            {

                var _url = "http://111.111.111.1:8090/HES/services/DoCommandRequest";

                string uniqueID = dr["Application_No"].ToString();
                //string meterNo = dr["METER_SERIAL_NO"].ToString();

                XmlDocument soapEnvelopeXml = CreateSoapEnvelope(uniqueID);
                HttpWebRequest webRequest = CreateWebRequest(_url);
                InsertSoapEnvelopeIntoWebRequest(soapEnvelopeXml, webRequest);


                // begin async call to web request.
                IAsyncResult asyncResult = webRequest.BeginGetResponse(null, null);

                // suspend this thread until call is complete. You might want to
                // do something usefull here like update your UI.
                asyncResult.AsyncWaitHandle.WaitOne();

                // get the response from the completed web request.
                string soapResult;
                using (WebResponse webResponse = webRequest.EndGetResponse(asyncResult))
                {
                    using (StreamReader rd = new StreamReader(webResponse.GetResponseStream()))
                    {
                        soapResult = rd.ReadToEnd();
                        processedRec++;


                    }

                }

            }
            timer.Stop();
        }

在上面的代码中,响应位于字符串soapResult中。

为了从响应中获取价值,我尝试执行以下操作

XDocument doc = XDocument.Parse(soapResult);
XmlReader xr = doc.CreateReader();
xr.ReadToFollowing("UserID");
string uid = xr.ReadElementContentAsString();

但是我得到了错误

  

{“节点类型“无”不支持ReadElementContentAsString方法。第0行,位置0。”}

我也尝试过

var result = from p in doc.Descendants() 
         where p.Name.LocalName == "UserID" select p.Value;

但是我没有结果。

任何帮助将不胜感激

2 个答案:

答案 0 :(得分:1)

首先将<return>元素的值放入一个字符串变量中(让我们说string returnValue

然后,通过将值传递到以下函数中来对returnValue进行XML解码。

public static string XmlDecode(string value) {
    var xmlDoc = new XmlDocument();
    xmlDoc.LoadXml("<root>" + value + "</root>");
    return xmlDoc.InnerText;
}

上述函数返回的值是有效的XML,您可以使用XDocument.Parse或LINQ to XML来解析

答案 1 :(得分:0)

问题在于您的肥皂响应内容是XML。但是UserID xml元素被理解为字符串-在您的响应内容中,有许多html转义字符)。

您需要通过替换&lt;&gt;&quot;来解决服务问题或取消转义字符串。