Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This document describes how to run the JMS Binding example and provides details about what it does. For information on the business use case, please refer to: Use Case for BasicJMS Binding.

The Basic example illustrates the following:

...

  1. From a command shell, go to the Basic example directory:
    Code Block
    cd [servicemix_install_dir]\examples\jms-binding
    
    where servicemix_install_dir is the directory in which ServiceMix was installed.
  2. Then type:
    Code Block
    [servicemix_install_dir]\bin\servicemix servicemix.xml
    
  3. To trigger the BPEL business processstart the sending and receiving of messages from the JMS topics, send it some messages. To do this, compile and run a simple JMS client. The client is built and run from source code using Ant. Execute Ant from the BPEL JMS Binding directory: servicemix_install_dir\examples\bpeljms-binding. To run the JMS client type:
    Code Block
    ant
    

    Ant will compile and run the simple JMS client, JMSClient, which performs a JMS based request-response into the ServiceMix container before returning the results to the console.

...