background image

Running the converter Application Client

<< Deploying the converter Java EE Application | Running the converter Web Client >>
<< Deploying the converter Java EE Application | Running the converter Web Client >>

Running the converter Application Client

Running the converter Application Client
When you run the application client, the application client container first injects the resources
specified in the client and then runs the client. You can run the application client using either
NetBeans IDE or Ant.
Running the converter Application Client Using
NetBeans IDE
Follow these instructions to run the application client using NetBeans IDE.
1. In NetBeans IDE, make sure the converter application is open.
2. In the Projects tab, right-click the converter project and select Run Project. You will see the
following output in the Output tab:
...
$100.00 is 11258.00 Yen.
11258.00 Yen is 78.81 Euro.
...
Running the converter Application Client Using Ant
To run the application client using Ant, perform the following steps.
1. In a terminal window, go to this directory:
tut-install/javaeetutorial5/examples/ejb/converter/
2. Type the following command:
ant run
This task will retrieve the application client JAR, converterClient.jar and run the
retrieved client JAR. converterClient.jar contains the application client class and the
support classes needed to access ConverterBean. Although you are using Ant to run the
client, this task is the equivalent of running:
appclient -client client-jar/converterClient.jar
3. In the terminal window, the client displays these lines:
...
$100.00 is 11531.00 Yen.
11531.00 Yen is 81.88 Euro.
...
Running the converter Application Client
Chapter 21 · Getting Started with Enterprise Beans
653