MSMQ自定义消息格式

时间:2013-08-23 13:08:05

标签: c# msmq

我想在MSMQ中发送消息,例如

<order><data id="5" color="blue"/></order>

这是标准的XML。到目前为止,我已经制作了Serializable类

[Serializable]
public class order
string id
string color

我正在使用BinaryFormatter。当我检查message.BodyStream有一些字符不应该在那里(00,01,FF),然后我没有错误地收到此消息。

这个任务似乎很简单,只需输入文字

<order><data id="5" color="blue"/></order> 

进入msmq。

挖掘整个重要代码:

public static void Send()
    {
        using (message = new Message())
        {
            request req = new request("1", "blue");

                message.Recoverable = true;
                message.Body = req.ToString();
                message.Formatter = new BinaryMessageFormatter();
                using (msmq = new MessageQueue(@".\Private$\testrfid"))
                {
                    msmq.Formatter = new BinaryMessageFormatter();
                    msmq.Send(message, MessageQueueTransactionType.None);
                }
        }
    }

[Serializable]
public class request
{
    private readonly string _order;
    private readonly string _color;

    public request(string order, string color)
    {
        _order = order;
        _color = color;
    }
    public request()
    { }
    public string Order
    {
        get { return _order; }
    }
    public string Color
    {
        get { return _color; }
    }

    public override string ToString()
    {
        return string.Format(@"<request> <job order = ""{0}"" color = ""{1}"" /> </request>",_order,_color);
    }
}

3 个答案:

答案 0 :(得分:1)

你的问题根本不是很清楚;您可以将任何类型的消息发送到MSMQ,只要您使用BinaryMessageFormatter即可。这是一个例子:

string error = "Some error message I want to log";

using (MessageQueue MQ = new MessageQueue(@".\Private$\Your.Queue.Name"))
{
    BinaryMessageFormatter formatter = new BinaryMessageFormatter();
    System.Messaging.Message mqMessage = new System.Messaging.Message(error, formatter);
    MQ.Send(mqMessage, MessageQueueTransactionType.Single);
    MQ.Close();
}

答案 1 :(得分:0)

我没有找到为什么Message.Body在传递给Body的字符串之前包含这些ascii字符的原因。我只是直接填充BodyStream而不是Body,让它自己转换:

Message.BodyStream = new MemoryStream(Encoding.ASCII.GetBytes(string i want to put as Body))

然后消息只是没有别的字符串。

答案 2 :(得分:-1)

您不需要serializable类将字符串发送到消息队列。

由于您使用的是BinaryMessageFormatter,因此必须先使用文本编码器将字符串转换为字节数组,例如

message.Body = new UTF8Encoding().GetBytes(req.ToString());

我只是使用UTF8作为示例,您可以使用您喜欢的任何编码。

然后,当您从队列中读取消息时,请记住使用相同的编码来恢复您的字符串,例如

string myString = new UTF8Encoding().GetString(message.Body);

希望这有帮助