Download | JavaDocs More... | Source | Forums | Support
Create the MessageProducer using a null destination; then specify the destination each time you send...
MessageProducer producer = session.createProducer(null); ... producer.send(someDestination, message); ... producer.send(anotherDestination, message);