public void sendAMessage(String msg) throws JMSException {
QueueSender send = session.createSender(que);
ObjectMessage tm = session.createObjectMessage(msg);
tm.setStringProperty(StoreMessageToFile.PROPERTY_JBESB_FILENAME, "BusinessRulesServiceTest.log");
send.send(tm);
send.close();
}
public String readAsciiFile(String fileName) throws IOException {
FileReader fr = null;
char[] thechars = null;