MSMQ - 带有 Html 的消息
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用像这样的 BinaryMessageFormatter(在接收端也类似):
或者创建一个带有 Html String 属性的 MsmqTransportObject 并传输它。
如果发送端和接收端都使用 .NET,则 XmlMessageFormatter 没有任何意义(在这种情况下,您可以安全地使用 BinaryMessageFormatter)
Try using a BinaryMessageFormatter like this (and similarly on the receiving end):
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)