ShowProgramCode

2023年7月4日 星期二

C# Net6 XML轉物件 錯誤訊息 ... xmlns='' was not expected

今天遇到需要將DTO與XML相互轉換,但卻一直遇到狀況。
後續處理完畢,特別紀錄一下。

XML:

  1. <massege>
  2. <header code="OTP" id="PUSID">
  3. <from>127.0.0.1</from>
  4. <to>255.0.0.0</to>
  5. </header>
  6. <body>
  7. 訊息內容
  8. </body>
  9. </message>

DTO:

  1. [XmlTypeAttribute(AnonymousType = true)]
  2. [XmlRootAttribute(Namespace = "", IsNullable = false, ElementName = "message")]
  3. public class TestMessage
  4. {
  5. public TestMessageHeader header{get;set;}
  6. public string body{get;set;}
  7. }
  8.  
  9. [XmlTypeAttribute(AnonymousType = true)]
  10. public class TestMessageHeader
  11. {
  12. [XmlAttributeAttribute()]
  13. public string code { get; set; } = string.Empty;
  14. [XmlAttributeAttribute()]
  15. public string id { get; set; } = string.Empty;
  16. public string from {get;set;} = string.Empty;
  17. public string to{get;set;} = string.Empty;
  18. }

程式碼:

  1. public static string XmlToDto<T>(string xml, ref T obj) where T : class
  2. {
  3. XmlSerializer Serializer = new XmlSerializer(typeof(T));
  4. try
  5. {
  6. using (StringReader reader = new StringReader(xml))
  7. {
  8. obj = (T)Serializer.Deserialize(reader);
  9. }
  10.  
  11. return "0000";
  12. }
  13. catch (Exception ex)
  14. {
  15. return ex.Message;
  16. }
  17. }
  18.  
  19. public static string XmlToDto<T>(string xml, string rootTag, ref T obj) where T : class
  20. {
  21. XmlSerializer Serializer = new XmlSerializer(typeof(T), new XmlRootAttribute(rootTag));
  22. try
  23. {
  24. using (StringReader reader = new StringReader(xml))
  25. {
  26. obj = (T)Serializer.Deserialize(reader);
  27. }
  28.  
  29. return "0000";
  30. }
  31. catch (Exception ex)
  32. {
  33. return ex.Message;
  34. }
  35. }

參考網頁:https://dotblogs.com.tw/initials/2020/11/18/184450

沒有留言:

張貼留言