List of usage examples for javax.jms TopicSession createTextMessage
TextMessage createTextMessage() throws JMSException;
From source file:org.apache.activemq.usecases.DurableSubscriptionHangTestCase.java
private void sendRandomMessage(TopicSession session, MessageProducer producer) throws JMSException { TextMessage textMessage = session.createTextMessage(); textMessage.setText(RandomStringUtils.random(500, "abcdefghijklmnopqrstuvwxyz")); producer.send(textMessage);//from www . ja v a 2 s. c o m }