在我的工作中,我使用部分使用 c++ 和 C# 开发的应用程序。C++ 代码负责管理activeMQ(发送、接收消息)。
我开发了一个应用程序,通过订阅我的 C# 应用程序来监视主题中发送的消息。
因此,当向主题发送消息时,我的应用程序设法处理消息,但消息在 ActiveMQBytesMessage 中序列化。
我怎样才能反序列化这个对象?
public void OnMessage(IMessage message)
{
if (message != null)
{
var content = (message as ActiveMQBytesMessage).Content; // This is a byte[], I tried to deserialize using BinaryFormatter but it throws an exception, I can't write it here because I'm at home.
}
}
我刚刚注意到 ActiveMQBytesMessage 从命名空间 Apache.NMS 继承了 IBytesMessage,但我没有看到任何可以帮助我反序列化消息的东西。
我使用最新版本的 ActiveMQ 和 NMS
[NB] 我的 C# 应用程序的目标是简单地监控 ActiveMQ 通道内发生的事情。这就是为什么我需要反序列化 ActiveMQBytesMessage 以便我可以在网格视图中显示对象的名称及其内容。
[添加更多信息]
这是我试图反序列化的内容。
var memoryStream = new MemoryStream((message as ActiveMQBytesMessage).Content);
var binaryFormatter = new BinaryFormatter();
memoryStream.Position = 0;
var deserializedMessage = binaryFormatter.Deserialize(memoryStream);
反序列化时出现此错误:
输入流不是有效的二进制格式。起始内容(以字节为单位)为:00-00-00-00-00-00-4F-8C-00-00-00-09-00-00-00-00-54 ...