Understanding the ESB Internals
Let's look at what happens inside the ESB when the "Hello, World!" application is executed. When you run the JMS client code in Listing One with the ESB, it appears that the message sent by the producer is simply received by the consumer component, as in Figure 16.

In reality, the ESB is itself listening with its own consumer, thereby intercepting and then routing the message back to the client application's consumer via its own internal message producer. This involved, but transparent, message interaction is shown more clearly in Figure 17.

It's precisely this sort of automated messaging capability, along with the associated message routing, that is the foundation for the ESB's power and ease of use. The internal interception and routing of messages allows the ESB to distribute processing across process and machine boundaries in order to improve overall system scalability, and to transparently provide failover and redundancy across various parts of the network deployment.
It's time to prove that the ESB and its internal message routing works, and that the "Hello, world!" message will truly be received and displayed. Follow along as we run the application and see the message delivered first-hand.
Running the Application
Let's recap what we're trying to accomplish with this sample application. So far, we've downloaded and installed the ServiceMix ESB, written the Java code for the message sender and receiver components, and wrote the ESB configuration file which specifies some simple message routing guidelines. Now let's prepare to execute the application and watch the ESB in action. The first step in running any ESB application is to ensure that the ESB itself is running.
Start the ServiceMix ESBFor this example, you will need to download the complete sample code for this article. While the listings above contained the full Java source code, there is an ant script (not shown) and more to the configuration file in Listing Three. The "Hello, world!" application should be placed in a directory called hello-world, which is the directory you should change to when you run it.
- Running on Microsoft Windows
- To start the ServiceMix ESB on Windows, enter the following command from within the hello-world directory:
> c:\servicemix-3.1\bin\servicemix.bat servicemix.xml
- To start the ServiceMix ESB on Windows, enter the following command from within the hello-world directory:
- Running on Unix
- To start the ServiceMix ESB on Unix, enter the following command from within the hello-world directory:
> /usr/local/servicemix-3.1/bin/servicemix servicemix.xml
Note: Remember to ensure that execute permission is set on the servicemix shell script within the servicemix-3.1/bin directory.
When the ESB has completely started, you should see output similar to that in Figure 18.

Once startup is complete, you can run the sample client application that will send, receive, and display the "Hello, world!" message.
Run the Client ApplicationYou can run the sample client application on either Windows or Unix via the supplied ant script with the following simple command from within a second command prompt or terminal window:
> ant
With this one command, the sample client application will be compiled, if needed, and run. If successful, the output you receive should appear similar to that in Figure 19.

The proper response is the "Hello, world!" message within the XML that was actually routed through the ESB. This text is seen just before "Done" message, at the bottom of Figure 19. Looking back at the first command prompt or terminal window, where the ESB is running and its output displayed, you should see some messages pertaining to a transaction that is started and then committed as the message is delivered. By default, with ServiceMix and this sample application, a transaction is started as each message is transported.
So there you have it -- your first ESB-based application. Reliable messaging, message routing, message normalization, and transaction support, all provided transparently and with very little code.