integration-patterns

Best Book to Study Integration Patterns

I recently finished a book and discussion group about Software Design Patterns. We have now started to study Integration Patterns. I am currently reading the free Microsoft Integration Patterns PDF. It is pretty good thus far, but it is old and I figured that there might be a better option available. Any recommendations for books, b...

How to "copy" a JMS message to 2 destinations?

I have a requirement that a single JMS message sent by a client must be delivered reliably (exactly-once) to two systems. These 2 systems are not HA-enabled, so the best suggestion that I came up with is to: create single queue where client posts to set up two "intermediate" queues use a custom "DuplicatorMDB" that will read messages f...