public void sendCBRJMSMessage() throws Exception {
clearMessages();
String sampleOrders = Helpers.getQuickstartLocation("recipient_list" + File.separator + FILE_NAME);
SendCBRJMSMessage sm = new SendCBRJMSMessage();
String fileContent = sm.readAsciiFile(sampleOrders);
sm.setupConnection();
sm.sendAMessage(fileContent);
sm.stop();
}