У меня есть строка, которую нужно десериализовать, и это ответ
<?xml version=\"1.0\" encoding=\"utf-8\"?>
<soap:Envelope xmlns:soap=\"http://www.w3.org/2003/05/soap-envelope\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">
<soap:Body>
<TestResponse xmlns=\"http://tempuri.org/\">
<TestResult>
<code>1</code>
<msg>Message was successfully sent</msg>
<sent />
</TestResult>
</TestResponse>
</soap:Body>
</soap:Envelope>
вот мой код десериализации
string s = System.Text.ASCIIEncoding.ASCII.GetString(result);
Test_Response resp = new Test_Response();
using (var stringReader = new System.IO.StringReader(s))
{
var serializer = new XmlSerializer(typeof(Test_Response));
resp = (Test_Response)serializer.Deserialize(stringReader);
}
return s;
вот мой класс
[Serializable(), XmlRoot("TestResult")]
public class Test_Response
{
public string code { get; set; }
public string msg { get; set; }
public string sent { get; set; }
}
, тогда сообщение об ошибке будет
Ошибка в XML-документе (1, 40).
внутреннее исключение
<Envelope xmlns='http://www.w3.org/2003/05/soap-envelope'> was not expected.
Может кто-нибудь мне помочь.Спасибо