I am trying to put messages in a private queue defined on my local computer, but the queue size cannot exceed 8 MB. I am getting an exception every time after that size is reached. The size for the specific queue is set at 10 GB. I am running Windows 7 Professional. Is there a limitation because of that?
Asked
Active
Viewed 4,420 times
3
-
The problem seems more like being unable to put messages greater than 3 MB on the queue. – DaeMoohn Apr 30 '10 at 08:47
1 Answers
5
This clears the issue as MSMQ limitation. One cannot place messages more than 4MB on the queue. That means that for my application, I have to pass the message identifier through the queue and store the message itself somewhere else.

DaeMoohn
- 1,087
- 13
- 27