码迷,mamicode.com
首页 > 其他好文 > 详细

无法反序列化作为参数传递的消息。无法识别序列化格式。

时间:2017-06-19 01:19:11      阅读:618      评论:0      收藏:0      [点我收藏+]

标签:blog   body   log   序列化   str   一模一样   for   否则   sage   

解决方法:

  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) });

 

无法反序列化作为参数传递的消息。无法识别序列化格式。

标签:blog   body   log   序列化   str   一模一样   for   否则   sage   

原文地址:http://www.cnblogs.com/DaphneOdera/p/7046034.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!