MSMQ - 带有 Html 的消息

发布于 2024-12-12 02:48:25 字数 184 浏览 0 评论 0原文

我正在使用 MSMQ 进行项目,发送和接收消息。

但是,当尝试访问消息正文时,我收到一条错误消息,指出“根元素丢失”,

我看不到问题所在,但想知道消息正文中的 Html 是否会导致该问题。

MSMQ可以处理Html吗?在 body 元素中使用 HTML 进行 Xml 序列化怎么样?

谢谢

I'm working on project using MSMQ, messages are both sent and received.

However, when trying to access the message body I get an error noting "Root element is missing"

I can't see the problem, but wondered whether the Html in the message body could be causing it.

Can MSMQ deal with Html? What about Xml Serialisation with HTML in the body elements?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我ぃ本無心為│何有愛 2024-12-19 02:48:25

尝试使用像这样的 BinaryMessageFormatter(在接收端也类似):

using (MessageQueue queue = new MessageQueue(".\\Private$\\msmq1"))
        {
            queue.Formatter = new BinaryMessageFormatter();

            using (Message message = new Message())
            {
                message.Body = "<html><body>my html here</body></html>;
                message.Recoverable = true;

                message.Formatter = new BinaryMessageFormatter();
                message.TimeToBeReceived = TimeSpan.MaxValue;
                queue.Send(message);
            }
        }

或者创建一个带有 Html String 属性的 MsmqTransportObject 并传输它。

如果发送端和接收端都使用 .NET,则 XmlMessageFormatter 没有任何意义(在这种情况下,您可以安全地使用 BinaryMessageFormatter)

Try using a BinaryMessageFormatter like this (and similarly on the receiving end):

using (MessageQueue queue = new MessageQueue(".\\Private$\\msmq1"))
        {
            queue.Formatter = new BinaryMessageFormatter();

            using (Message message = new Message())
            {
                message.Body = "<html><body>my html here</body></html>;
                message.Recoverable = true;

                message.Formatter = new BinaryMessageFormatter();
                message.TimeToBeReceived = TimeSpan.MaxValue;
                queue.Send(message);
            }
        }

Or create a MsmqTransportObject with an Html String property and transfer that instead.

The XmlMessageFormatter makes no sense if both the send and receive ends are using .NET (in which case you can safely use BinaryMessageFormatter)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文