blob: f2be69e1bf9917a671694dadffc07f6a88d22dcc [file] [log] [blame]
<div class="wiki-content maincontent"><h2>How do I send messages to different Destinations from a single MessageProducer?</h2>
<p>Create the MessageProducer using a null destination; then specify the destination each time you send...</p>
<structured-macro ac:macro-id="cfdfbd31-1bde-4d5f-aa90-0f60d4ed9759" ac:name="code" ac:schema-version="1"><plain-text-body>
MessageProducer producer = session.createProducer(null);
...
producer.send(someDestination, message);
...
producer.send(anotherDestination, message);
</plain-text-body></structured-macro></div>