The Java EE 5 Tutorial

simplemessage Example Application Overview

The simplemessage application has the following components:

Figure 23–1 illustrates the structure of this application. The application client sends messages to the queue, which was created administratively using the Admin Console. The JMS provider (in this case, the Application Server) delivers the messages to the instances of the message-driven bean, which then processes the messages.

Figure 23–1 The simplemessage Application

Diagram of application showing an application client
sending a message to a queue, and the message being delivered to a message-driven
bean

The source code for this application is in the tut-install/javaeetutorial5/examples/ejb/simplemessage/ directory.