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

Examples of org.jboss.soa.esb.samples.quickstart.webserviceproducer.test.SendMessage


      assertTrue("Expected to find string " + RESULT_STRING + " found " + sinkMessages[0],
          sinkMessages[0].equals(RESULT_STRING));
  }

  public void sendMessage() throws Exception {
        SendMessage sm = new SendMessage();
        String location = Helpers.getQuickstartLocation("webservice_producer/src/org/jboss/soa/esb/samples/quickstart/webserviceproducer/test/soap_message_01.xml");
        File file = new File(location);
    String targetString = FileUtil.readTextFile(file);
        sm.sendMessageOverJMS(targetString);
  }
View Full Code Here

TOP

Related Classes of org.jboss.soa.esb.samples.quickstart.webserviceproducer.test.SendMessage

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.