Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将消息放入本地计算机上定义的专用队列中,但队列大小不能超过 8 MB。每次达到该大小后,我都会遇到异常。特定队列的大小设置为 10 GB。我正在运行 Windows 7 专业版。因此有限制吗?
http://blogs.msdn.com/johnbreakwell/archive/2007/08/22/why-is-there-a-4mb-limit-on-msmq-messages.aspx
这清除了作为 MSMQ 限制的问题。不能在队列中放置超过 4MB 的消息。这意味着对于我的应用程序,我必须通过队列传递消息标识符并将消息本身存储在其他地方。