Re: 5120 byte message causes problem
Posted By:
Andreas_Mueller
Posted On:
Thursday, March 7, 2002 04:52 AM
SwiftMQ uses message body compression by default. The threshold is 2 KB. As you see, 64 KB are requested during compression and your client runs out of memory. Give it more heap size, e.g. -mx256M. You can also switch the compression off by setting the resp. message property:
msg.setBooleanProperty("JMS_SWIFTMQ_BC",false);