Download
PDF
Home
History
PrevBeginningNext API
Search
Feedback
FAQ
Divider

An Application Example That Consumes Messages from a Remote J2EE Server

This section and the following section explain how to write, compile, package, deploy, and run a pair of J2EE applications that run on two J2EE servers and that use the JMS API to interchange messages with each other. It is a common practice to deploy different components of an enterprise application on different systems within a company, and these examples illustrate on a small scale how to do this for an application that uses the JMS API.

However, the two examples work in slightly different ways. In this first example, the deployment information for a message-driven bean specifies the remote server from which it will consume messages. In the next example, the same bean is deployed on two different servers, so it is the client application that specifies the servers (one local, one remote) to which it is sending messages.

This first example divides the example in Chapter 28 into two applications: one containing the application client, and the other containing the message-driven bean.

This section covers the following topics:

You will find the source files for this section in <INSTALL>/j2eetutorial14/examples/jms/consumeremote/. Path names in this section are relative to this directory.

Overview of the Applications

Except for the fact that it is packaged as two separate applications, this example is very similar to the one in Chapter 28:

The basic steps of the applications are as follows.

  1. The administrator starts two J2EE servers, one on each system.
  2. On the remote server, the administrator deploys the client application.
  3. On the local server, the administrator deploys the message-driven bean application, which uses a connection factory that specifies the remote server where the client is deployed.
  4. The client application sends three messages to a queue.
  5. The message-driven bean consumes the messages.

Figure 34-3 illustrates the structure of this application. You can see that it is almost identical to Figure 28-1 except that there are two J2EE servers. The queue used is the one on the remote server; the queue must also exist on the local server for JNDI lookups to succeed.

A J2EE Application that Consumes Messages from a Remote Server

Figure 34-3 A J2EE Application That Consumes Messages from a Remote Server

Writing the Application Components

Writing the components of the applications involves

The application client, jupiterclient/src/SimpleClient.java, is almost identical to the one in The Application Client.

Similarly, the message-driven bean, earthmdb/src/MessageBean.java, is almost identical to the one in The Message-Driven Bean Class.

The only major difference is that the client and the bean are packaged in two separate applications.

Creating and Packaging the Applications

For this example, the message-driven bean uses the connection factory named jms/JupiterQueueConnectionFactory, which you created in Creating Administered Objects for Multiple Systems. Use the Admin Console to verify that the connection factory still exists and that its MessageServiceAddressList property is set to the name of the remote system.

The application client can use any connection factory that exists on the remote server; you created jms/JupiterQueueConnectionFactory on that server, so you can use that. Both components use the queue named jms/Queue, which you created in Creating JMS Administered Objects.

We'll assume, as we did in Running JMS Client Programs on Multiple Systems, that the two servers are named earth and jupiter.

Creating and packaging this application involve five steps:

  1. Compiling the source files
  2. Creating the application
  3. Packaging the application client
  4. Packaging the message-driven bean
  5. Verifying the JNDI names

You can package the applications yourself as an exercise. Use the asant build targets in the jupiterclient and earthmdb directories to compile the source files.

This section uses the prepackaged EAR files to show how to create and package the applications.

Which system you use to package and deploy the applications and which system you use to run the client depend on your network configuration--which file system you can access remotely. These instructions assume that you can access the file system of jupiter from earth but cannot access the file system of earth from jupiter. (You can use the same systems for jupiter and earth that you used in Running JMS Client Programs on Multiple Systems.)

The Application Server must be running on both systems.

You can package both applications on earth and deploy them from there. The only action you perform on jupiter is running the client application.

Examining the Applications

  1. In deploytool, on earth, open the two EAR files JupiterClientApp.ear and EarthMDBApp.ear, which reside in the directory <INSTALL>/j2eetutorial14/jms/provided-ears.
  2. In JupiterClientApp.ear, select the application client node, SimpleClient.
    1. Click the Resource Ref's tab. The client uses the connection factory jms/JupiterQueueConnectionFactory to send messages to a queue. The application looks up the coded name jms/MyConnectionFactory and casts the object to an object of type javax.jms.ConnectionFactory.
    2. Click the Msg Dest Ref's tab. The coded name jms/QueueName refers to the target destination PhysicalQueue.
    3. Click the Message Destinations tab, and then click PhysicalQueue. The client appears in the Producers area. It refers to the JNDI name jms/Queue.
  3. In EarthMDBApp.ear, expand the MDBJAR node and select MessageBean.
    1. Click the Message-Driven tab. The bean uses the PhysicalQueue target destination and the connection factory jms/JupiterQueueConnectionFactory.
    2. Click the Transactions tab. The bean uses container-managed transactions.
  4. Select the MDBJAR node, click the Message Destinations tab, and then click PhysicalQueue. The message-driven bean appears in the Consumers area. It refers to the JNDI name jms/Queue.
  5. Select the EarthMDBApp node and click Sun-specific Settings on the General page. The JNDI name for the message-driven bean is the queue destination resource, jms/Queue.

The JNDI name for the EarthMDBApp application should appear as shown in Table 34-5. Only the Application pane has any content.

Table 34-5 Application Pane for EarthMDBApp
Component Type
Component
JNDI Name
EJB
MessageBean
jms/Queue

The JNDI name for the JupiterClientApp application should appear as shown in Table 34-6. Only the References pane has any content.

Table 34-6 References Pane for JupiterClientApp
Ref. Type
Referenced By
Reference Name
JNDI Name
Resource
SimpleClient
jms/MyConnectionFactory
jms/JupiterQueueConnectionFactory

Deploying the Applications

To deploy the EarthMDBApp application, perform the following steps:

  1. Save the application.
  2. Choose ToolsRight ArrowDeploy.
  3. In the dialog box, choose the URI for localhost from the Server menu.
  4. Type your administrative user name and password (if they are not already filled in) and click OK.
  5. In the Distribute Module dialog box, click Close when the process completes.

Before you can deploy the JupiterClientApp application, you must add the remote server. On earth, perform the following steps:

  1. Choose FileRight ArrowAdd Server.
  2. Type the name of the remote system in the Server Name field.
  3. Click OK.
  4. The server appears in the tree under Servers. Select it.
  5. In the Connect to Server dialog box that appears, type the administrative user name and password for the server in the Connection Settings area, and click OK.

To deploy the JupiterClientApp application and save the client JAR file, perform the following steps:

  1. Save the application.
  2. Choose ToolsRight ArrowDeploy.
  3. In the dialog box, choose the URI for the remote system (jupiter) from the Server menu:
  4. system-name:4848

  5. Type your administrative user name and password (if they are not already filled in).
  6. In the Application Client Stub Directory area, select the Return Client Jar checkbox.
  7. Choose Browse to navigate to the directory on the remote system (jupiter) from which you will run the client. When you reach the directory, click Select, and then click OK.
  8. Click OK.
  9. In the Distribute Module dialog box, click Close when the process completes. You will find a file named JupiterClientAppClient.jar in the specified directory.

Running the Application Client

To run the client, perform the following steps:

  1. Go to the directory on the remote system (jupiter) where you created the client JAR file.
  2. Use the following command:
  3. appclient -client JupiterClientAppClient.jar

On jupiter, the output of the appclient command looks like this:

Sending message: This is message 1
Sending message: This is message 2
Sending message: This is message 3 

On earth, the output in the server log looks like this (wrapped in logging information):

In MessageBean.MessageBean()
In MessageBean.setMessageDrivenContext()
In MessageBean.ejbCreate()
MESSAGE BEAN: Message received: This is message 1
MESSAGE BEAN: Message received: This is message 2
MESSAGE BEAN: Message received: This is message 3 

Undeploy the applications after you finish running the client.

Divider
Download
PDF
Home
History
PrevBeginningNext API
Search
Feedback

FAQ
Divider

All of the material in The J2EE(TM) 1.4 Tutorial is copyright-protected and may not be published in other works without express written permission from Sun Microsystems.