无法反序列化作为参数传递的消息。无法识别序列化格式。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无法反序列化作为参数传递的消息。无法识别序列化格式。相关的知识,希望对你有一定的参考价值。
解决方法:
MessageQueue.Formatter 设置Formatter 属性和Message.Formatter 设置属性,一个是在队列中设置,一个是在消息中设置
MessageQueue.Formatter和Message.Formatter 都要设置还要设置的一模一样 否则就会报异常,无法反序列化作为参数传递的消息。无法识别序列化格式。
[Serializable] public class MsmqLog { public string GUID { get; set; } public string EMLogJson { get; set; } public DateTime CreateTime { get; set; } } //1.为MessageQueue对象设置Formatter属性 private MessageQueue _msgQueue; _msgQueue = new MessageQueue(_pathQueue); _msgQueue.Formatter = new XmlMessageFormatter(new Type[] { typeof(MsmqLog) }); //2.为Message对象设置Formatter属性 MsmqLog msmqLog = new MsmqLog { GUID = Guid.NewGuid().ToString(), EMLogJson = jsonLogStr, CreateTime = DateTime.Now }; Message msg = new Message(); msg.Body = msmqLog; msg.Formatter = new XmlMessageFormatter(new Type[] { typeof(MsmqLog) });
以上是关于无法反序列化作为参数传递的消息。无法识别序列化格式。的主要内容,如果未能解决你的问题,请参考以下文章