blob: cb0863dbf78a5f8a2a6ccf023ae35497f0bb105e [file] [log] [blame]
<div class="wiki-content maincontent"><p>How can I send a message to multiple Destinations using a MessageProducer? The trick is to pass null in for the destination when you create it; then you can specify the destination on each send.</p>
<structured-macro ac:macro-id="1b0481f4-3aba-4bc2-a3a0-2ddac58514b0" ac:name="code" ac:schema-version="1"><plain-text-body>
MessageProducer producer = session.createProducer(null);
...
producer.send(destination, message);
</plain-text-body></structured-macro></div>