MSMQ Private Queue Size Limit

I am trying to put messages into a private queue defined on my local machine, but the queue size cannot exceed 8MB. I get an exception every time after reaching this size. The size for a specific queue is set to 10 GB. I am using Windows 7 Professional. Is there a limitation because of this?

+2


a source to share


1 answer


http://blogs.msdn.com/johnbreakwell/archive/2007/08/22/why-is-there-a-4mb-limit-on-msmq-messages.aspx



This fixes the problem as an MSMQ limitation. Unable to queue messages over 4 MB. This means that for my application, I have to pass the message id through the queue and store the message elsewhere.

+4


a source







All Articles