Parsen Sie eine Soap-XML in eine C # -Klasse
Ich versuche, eine SOAP-Nachricht in eine bestimmte Klasse zu zerlegen, habe aber Probleme.
Dies ist die SOAP-Nachricht:
<?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">
<soap:Body>
<LoginResponse
xmlns="http://schemas.microsoft.com/sharepoint/soap/">
<LoginResult>
<CookieName>FedAuth</CookieName>
<ErrorCode>NoError</ErrorCode>
<TimeoutSeconds>1800</TimeoutSeconds>
</LoginResult>
</LoginResponse>
</soap:Body>
</soap:Envelope>
Ich habe eine einfache Klasse mit 3 Attributen:
public class SoapResponse
{
public string CookieName { get; set; }
public int TimeoutSeconds { get; set; }
public string ErrorCode { get; set; }
}
Ich versuche, das Soap-XML mit Linq auszuwerten und in ein Objekt der SoapResponse-Klasse zu analysieren. Bisher habe ich den nächsten Code:
var xml = XDocument.Parse(responseXml);
var soapResponse = from result in xml.Descendants(XName.Get("LoginResult", xmlNamespace))
let cookieNameElement = result.Element(XName.Get("CookieName", xmlNamespace)) where cookieNameElement != null
let timoutSecondsElement = result.Element(XName.Get("TimoutSeconds", xmlNamespace)) where timoutSecondsElement != null
let errorCodeElement = result.Element(XName.Get("ErrorCode", xmlNamespace)) where errorCodeElement != null
select new SoapResponse
{
CookieName = cookieNameElement.Value,
TimeoutSeconds = Convert.ToInt32(timoutSecondsElement.Value),
ErrorCode = errorCodeElement.Value
};
Ich weiß, dass dies ein sehr ähnlicher Beitrag zu diesem @ i Verwenden von LINQ to XML zum Analysieren einer SOAP-Nachrichtpost, aber ich kann es nicht umgehen.
Danke im Voraus! :)