Package org.jboss.soa.esb.samples.quickstart.spring_jpetstore.test

Examples of org.jboss.soa.esb.samples.quickstart.spring_jpetstore.test.SendJMSMessage


      sendMessage() ;
      checkMessages(30000, JMS_MESSAGE) ;
  }

  public void sendMessage() throws Exception {
    SendJMSMessage sm = new SendJMSMessage();
    sm.setupConnection();
    String orderFile = Helpers.getQuickstartLocation("spring_jpetstore/sample-order.xml");
    File target = new File(orderFile);
    String targetString = FileUtil.readTextFile(target);
    sm.sendAMessage(targetString);
    sm.stop();
  }
View Full Code Here

TOP

Related Classes of org.jboss.soa.esb.samples.quickstart.spring_jpetstore.test.SendJMSMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.