J2EE Client Application Programmer's Guide

Target Audience and Content

The target audience for this guide is the Client component provider, i.e. the person in charge of developing the Client components on the client side. It describes how the Client component provider should build the deployment descriptors of its Client components and how the client components should be packaged.

The content of this guide is the following:

  1. Target Audience and Content
  2. Launching J2EE Client Applications
  3. Defining the Client Deployment Descriptor
  4. Client Packaging

Launching J2EE Client Applications

Launching clients

The J2EE client application is a .jar file which can be

All the files required to launch the client container are in the JONAS_ROOT/lib/client.jar file. This jar includes a manifest file with the name of the class to launch. To launch the client container, simply type:

java -jar $JONAS_ROOT/lib/client.jar -?. This will launch the client container and display usage information about this client container.

To launch the client container on a remote computer, copy the client.jar and invoke the client container by typing java -jar path_to_your/client.jar.

The client that must be launched by the client container is given as an argument of the client container.
example : java -jar client.jar myApplication.ear
or java -jar client.jar myClient.jar.

Configuring client container

JNDI access

Defining the JNDI access and the protocol to use is an important part of configuration.
The JOnAS server, as well as the ClientContainer, uses the values specified in the carol.properties file.
This file can be used at different levels.
The carol.properties is searched with the following priority (high to low):

A convenient way is to update the carol.properties of your client.jar with your customized carol.properties file. That is, use the jar -uf client.jar carol.properties command.

Trace configuration

The client container client.jar includes a traceclient.properties file. This is the same file as the one in JONAS_ROOT/conf directory.
A different configuration file can be used for the traces by specifying the parameter -traceFile when invoking the client container.
You can replace the file in the client.jar with the jar -uf client.jar traceclient.properties command.

Specifying the client to use (EAR case)

An ear can contain many java clients, which are described in the application.xml file inside the <module><java> elements.
To invoke the client container with an ear, such as java -jar client.jar my.ear, specify the java client to use if there are many clients. Otherwise, it will take the first client.
To specify the jar client to use from an ear, use the argument -jarClient and supply the name of the client to use.
The earsample example in the JOnAS examples has two java clients in its ear.

Specifying the directory for unpacking the ear (EAR case)

By default, the client container will use the system property java.io.tmpdir.
To use another temporary directory, specify the path by giving the argument -tmpDirto the client container.

Examples

The earsample and jaasclient examples of the JOnAS examples are packaged for use by the client container.
The first example demonstrates the client inside an ear. The second example demonstrates the use of a standalone client.

Defining the Client Deployment Descriptor

Principles

The Client component programmer is responsible for providing the deployment descriptor associated with the developed client components.

The client component provider's responsibilities and the Application Assembler's responsibilities are to provide an XML deployment descriptor that conforms to the deployment descriptor's XML DTD as defined in the Java TM Application Client Specification Version 1.3. (Refer to $JONAS_ROOT/xml/application-client_1_3.dtd).

To customize the Client components, information not defined in the standard XML deployment descriptor may be needed. Such information might include, for example, the mapping of the name of referenced resources to its JNDI name. This information can be specified during the deployment phase within another XML deployment descriptor that is specific to JOnAS. The JOnAS-specific deployment descriptor's XML DTD is located in $JONAS_ROOT/xml/jonas-client_X_Y.dtd. The file name of the JOnAS-specific XML deployment descriptor must be 'jonas-client.xml'.

JOnAS interprets the <!DOCTYPE> tag at the parsing of the deployment descriptor XML files.
The parser first tries to get the specified DTD via the classpath, then it uses the specified URL (or path).

In the following two examples, the parser gets the jonas-client_3_2.dtd DTD file via the URL or in the /usr/local/jonas/xml/ directory.

<!DOCTYPE application-client PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application Client 1.3//EN" 
                                    "http://java.sun.com/dtd/application-client_1_3.dtd">
<!DOCTYPE application-client SYSTEM "/usr/local/jonas/xml/application-client_1_3.dtd">

    

The standard deployment descriptor (application-client.xml) should contain structural information that includes the following:

The JOnAS-specific deployment descriptor (jonas-client.xml) may contain information that includes the following::

Examples of Client Deployment Descriptors

Tips

Although some characters, such as ">", are legal, it is good practice to replace them with XML entity references.

The following is a list of the predefined entity references for XML:

&lt; < less than
&gt; > greater than
&amp; & ampersand
&apos; ' apostrophe
&quot; " quotation mark

Client Packaging

Principles

Client components are packaged for deployment in a standard Java programming language Archive file called a jar file (Java ARchive). The document root contains a subdirectory called META-INF, which contains the following files and directories:

The manifest of this client jar must contain the name of the class to launch (containing the main method). This is defined by the value of the Main-Class attribute of the manifest file.
For a standalone client (not bundled in an Ear), all the Ejb classes (except the skeleton) on which lookups will be performed must be included.

Example

Two examples of building a java client are provided.