Versions Compared

Key

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

...

  1. From a command shell, go to the JMS Http Binding example directory:
    Code Block
    cd [servicemix_install_dir]\examples\http-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 start sending and receiving of messages from the Http server, send an initial message. To do this, compile and run a simple Http client. The client is built and run from source code using Ant. Execute Ant from the JMS Http Binding directory: servicemix_install_dir\examples\http-binding. To run the Http client type:
    Code Block
    ant
    

    Ant will compile and run the simple Http client, HttpClient, which performs a simple post on the Http Server into the ServiceMix container before returning the results to the console.

...