Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to implement message segmentation using JMS as it is in using Native IBM API as shown here. One posible solution I have read is message grouping for JMS. is anyone using this an alternative solution to Segmentation, using JMS?

share|improve this question
For what reasons you looking message segmentation? Is the message you are sending too big? Message grouping is basically grouping of messaging which some kind of relation between them and all the messages in the group are required for processing. – Shashi Nov 15 '11 at 20:06
Hi Shashi - there's a 5mb restriction on the size of messages that can be transmitted over the Queues (this is a achitectural policy). Meaning files greater than 5Mb have to be segmented somehow before doing an MQ put. – user1047266 Nov 16 '11 at 8:37

1 Answer

Yes, you can implement message segmentation using JMS as described here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.