私はこれをしばらく探していましたが、解決策が見つかりません。xmldocument にロードした HttpWebRequest から返された xml があり、リクエストの特定の属性 (ステータス) を取得しようとしています。返される xml は次のとおりです。
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>
<soapenv:Body>
<processRequestResponse>
<parameters>
<ns1:searchResponse status="success" xmlns:ns1="urn:oasis:names:tc:SPML:2:0:search">
<ns1:pso>
<ns2:psoID ID="Users:####" xmlns:ns2="urn:oasis:names:tc:SPML:2:0"/>
<ns3:data xmlns:ns3="urn:oasis:names:tc:SPML:2:0">
<ns4:attr name="Users.User ID" xmlns:ns4="urn:oasis:names:tc:DSML:2:0:core">
<ns4:value></ns4:value>
</ns4:attr>
</ns3:data>
</ns1:pso>
</ns1:searchResponse>
</parameters>
</processRequestResponse>
</soapenv:Body>
</soapenv:Envelope>
このデータを取得するために使用しているコードは以下のとおりです。
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
StreamReader reader = new StreamReader(response.GetResponseStream());
string returnResponse = reader.ReadToEnd();
XmlDocument doc = new XmlDocument();
doc.LoadXml(returnResponse);
XmlNode root = doc.DocumentElement;
XmlNode searchResponse = root.SelectSingleNode("Envelope/Body/processRequestResponse/parameters/searchResponse");
XmlAttribute status = (XmlAttribute)searchResponse.Attributes.GetNamedItem("status");
if (status != null)
{
string statusReturn = status.Value;
return statusReturn;
}
else
{
return "value is null";
}
ステータス値についてご協力いただけると幸いです。xmlattrbute ステータス ラインにオブジェクト参照エラーが表示され続けます。