Можно сообщение прочитать через Message.ToString(), но так неверно оно будет скопировано и если вдруг вы при этом подписываете сообщение, то может нарушиться подпись. Данный способ был рабочим для меня.
using (var msstream = new MemoryStream()) { var xmlWriter = XmlDictionaryWriter.CreateTextWriter(msstream); m.WriteMessage(xmlWriter); xmlWriter.Flush(); msstream.Position = 0; using (FileStream file = new FileStream("Responce.xml", FileMode.Create, System.IO.FileAccess.Write)) { byte[] bytes = new byte[msstream.Length]; msstream.Read(bytes, 0, (int)msstream.Length); file.Write(bytes, 0, bytes.Length); } }
No comments:
Post a Comment
Note: only a member of this blog may post a comment.