在尝试从MSMQ获取消息时,我得到了一些stange结果 - 看起来消息已损坏。当我尝试将其解析回对象时,我只获得了xml异常。
这是我正在尝试做的事情。
我正在使用此代码从Web服务写入MSMQ
MessageQueue queue = new MessageQueue(ConfigurationManager.AppSettings["receiptQueue"]);
{
queue.Formatter = new XmlMessageFormatter(new[] { typeof(Receipt) });
Message msg = new Message();
Receipt obj = new Receipt();
obj.AlertId = alertId;
obj.UserName = userName;
obj.Version = version;
obj.PC = pcName;
msg.Body = obj;
queue.Send(msg);
}
我正在使用的Receipt对象看起来像这样
public class Receipt
{
public Receipt()
{
}
public int AlertId { get; set; }
public int Version { get; set; }
public string UserName { get; set; }
public string PC { get; set; }
}
在Windows服务中,我正试图从队列中获取对象。
初始化队列
MessageQueue receiptQueue = new MessageQueue(ConfigurationManager.AppSettings["receiptQueue"]);
receiptQueue.Formatter = new XmlMessageFormatter(new[] { typeof(Receipt) });
receiptQueue.ReceiveCompleted += new ReceiveCompletedEventHandler(ReceiptReceiver);
receiptQueue.BeginReceive();
处理消息
private void ReceiptReceiver(object source, ReceiveCompletedEventArgs asyncResult)
{
Receipt receptObj = new Receipt();
MessageQueue mq = (MessageQueue)source;
Message mes =mq.EndReceive(asyncResult.AsyncResult);
try
{
receptObj = (Receipt)mes.Body; //error happens here
//Do logic
}
}
catch (Exception ex)
{
// ex handeling
}
mq.BeginReceive();
}
我在mq.EndReceive
之后收到有关该消息的以下信息然后去捕捉异常是“缺少根元素”的地方
这是来自队列的消息。它看起来格式很好。
<?xml version="1.0"?>
<Receipt xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<AlertId>500</AlertId>
<Version>2</Version>
<UserName>jk9c</UserName>
<PC>aasudv211</PC>
</Receipt>
对我做错的任何建议?
/厄
答案 0 :(得分:1)
发现错误..这是一个非常简单而且非常愚蠢的错误。 我将队列分配给代码中其他位置的错误格式化程序。
所以我有
receiptQueue.Formatter = new XmlMessageFormatter(new[] { typeof(Receipt) });
和
receiptQueue.Formatter = new XmlMessageFormatter(new[] { typeof(AlertMessage) });
我删除后的所有内容都运行良好。