Download
Home History |
![]() ![]() ![]() |
API
Search Feedback FAQ |
Building, Packaging, Deploying, and Running the Application
The source code for the Coffee Break application is located in the directory
<
INSTALL
>/j2eetutorial14/examples/cb/
. Within thecb
directory are subdirectories for each Web application--saaj
,jaxrpc
,server
, andserver-jsf
--and a directory,common
, for classes shared by the Web applications. Each subdirectory contains abuild.xml
andbuild.properties
file. The Web application subdirectories in turn contain asrc
subdirectory for Java classes and aweb
subdirectory for Web resources.Setting the Port
The JAX-RPC and SAAJ services in the Coffee Break application run at the port that you specified when you installed the Application Server. The tutorial examples assume that the Application Server runs on the default port, 8080. If you have changed the port, you must update the port number in the following files before building and running the examples:
Setting Up the Registry Server
The Coffee Break servers use a registry server to obtain information about the JAX-RPC service endpoint. Since the Application Server does not include a registry server, you must obtain one before you can run the application.
We recommend that you use the Registry Server provided with the Java Web Services Developer Pack (Java WSDP) 1.4, which you can download from
http://java.sun.com/webservices/downloads/
. To use the Java WSDP Registry Server, follow these steps:
- Stop the Application Server.
- Start the Java WSDP install program.
- Choose the Custom install option.
- When the install program requests that you choose which features to install, deselect everything except the Java WSDP Registry Server.
- Select the Sun Java System Application Server Platform Edition 8 for the Web container. The Registry Server and its backing repository Xindice are installed into the Application Server as Web applications.
- Start the Application Server.
- Confirm that the Registry Server and Xindice Web applications are running using the Admin Console or
deploytool
.The Registry Server is automatically loaded when you start the Application Server.
Using the Provided WARs
The instructions that follow for packaging and deploying the Coffee Break Web applications assume that you are familiar with the deploytool procedures for packaging Web services and presentation-oriented Web applications described in previous chapters of the tutorial. If after following these procedures you have trouble deploying or running the application, you can use the WARs provided in
<
INSTALL
>/j2eetutorial14/examples/cb/provided-wars/
to run the example. The provided WARs assume that Coffee Break supplier services and the Registry Server are all running on port 8080. If the services are not running on port 8080, you won't be able to use these WARs.Building the Common Classes
The Coffee Break applications share a number of common utility classes. To build the common classes, do the following:
Building, Packaging, and Deploying the JAX-RPC Service
To build the JAX-RPC service and client library and to package and deploy the JAX-RPC service, follow these steps:
- In a terminal window, go to
<INSTALL>
/j2eetutorial14/examples/cb/jaxrpc/
.- Run
asant build-registry
andasant
build-service
. These tasks create the JAR file containing the JAXR routines and runwscompile
and compile the source files of the JAX-RPC service.If you get an error, make sure that you edited the file
<INSTALL>
/j2eetutorial14/examples/common/build.properties
as described in Building the Examples.- Make sure the Application Server and Registry Server are started.
To package and deploy the JAX-RPC service using
asant
, follow these steps:
- Run
asant
create-war
.- If you did not do so in Chapter 10, follow the instructions in Creating JAXR Resources to create a JAXR connection factory named
eis/JAXR
.- Run
asant
deploy-war
.To package and deploy the JAX-RPC service using
deploytool
, follow these steps:
- Start
deploytool
.- Create a stand-alone Web module named
jaxrpc-coffee-supplier
in<
INSTALL
>/j2eetutorial14/examples/cb/jaxrpc
/.- Set the context root to
/jaxrpc-coffee-supplier
.- Add the content to the service.
- Add the
com
package,Supplier.wsdl
, andmapping.xml
under<
INSTALL
>/j2eetutorial14/examples/cb/jaxrpc/build/server/
to the module.- Navigate to
<
INSTALL
>/j2eetutorial14/examples/cb/jaxrpc/build/registry/dist/
and addregistry-org.jar
.- In the Web module contents editor, drag the
com
directory (containingsun/cb/SupplierPrices.properties
) from the context root toWEB-INF/classes/
.- Specify Web Services Endpoint as the component type.
- In the Choose Service dialog box (Define New Service):
- In the Component General Properties dialog box:
- In the Web Service Endpoint dialog box:
- Add the alias
/jaxrpc
to theSupplierImpl
Web component.- Select the Endpoint tab, and then select
jaxrpc
from the Endpoint Address combo box in the Sun-specific Settings frame.- Add an event listener that references the listener class
com.sun.cb.ContextListener
.- Add a resource reference of type
javax.xml.registry.ConnectionFactory
namedeis/JAXR
mapped to the JAXR connection factoryeis/JAXR
. If you have not already created the connection factory, follow the instructions in Creating JAXR Resources.- Add the context parameter that specifies the URL of the registry server. The parameter is named
registryURL
and the value ishttp://localhost:
port
/RegistryServer/
, whereport
is the port at which the registry server is running.- Save the module.
- Deploy the module.
Next, build and test the client:
- Run
asant
build-client
. This task creates the JAR file that contains the classes needed by JAX-RPC clients. Thebuild-client
task runswscompile
to generate the stubs and JavaBeans components.- Test that the JAX-RPC service has been deployed correctly by running the test programs
asant run-test-order
andasant
run-test-price
Here is what you should see when you run
asant
run-test-price
:
run-test-price:
run-test-client:
[java] 07/21/03 08/20/03
[java] Kona 6.50
[java] French Roast 5.00
[java] Wake Up Call 5.50
[java] Mocca 4.00Building, Packaging, and Deploying the SAAJ Service
To build the SAAJ service and client library, follow these steps:
To package and deploy the SAAJ service using
asant
, follow these steps:To package and deploy the SAAJ service using
deploytool
, follow these steps:
- Start
deploytool
.- Create a stand-alone Web module called
saaj-coffee-supplier
in<
INSTALL
>/j2eetutorial14/examples/cb/saaj/
.- Set the context root to
/saaj-coffee-supplier
.- Add the
com
directory under<
INSTALL
>/j2eetutorial14/examples/cb/saaj/build/server/
to the module.- Add the
ConfirmationServlet
Web component. Choose the Servlet component type.- Add the alias
/orderCoffee
to theConfirmationServlet
Web component.- Add the
PriceListServlet
Web component to the existingsaaj-coffee-supplier
WAR.- Add the alias
/getPriceList
to thePriceListServlet
Web component.- Save the module.
- Deploy the module.
Test that the SAAJ service has been deployed correctly by running one or both of the test programs
asant
run-test-price
andasant
run-test-order
.Building, Packaging, and Deploying the Coffee Break Server
To build the Coffee Break server:
To package and deploy the Coffee Break server using
asant
, follow these steps:To package and deploy the Coffee Break server using
deploytool
, follow these steps:
- Start
deploytool
.- Create a stand-alone Web module called
cbserver
in<
INSTALL
>/j2eetutorial14/examples/cb/server/
.- Set the context root to
/cbserver
.- Add the content to the Web module.
- Add all the JSP pages,
tutorial-template.tld
, and thetemplate
andcom
directories under<
INSTALL
>/j2eetutorial14/examples/cb/server/build/
to the module.- In the Web module contents editor, drag the
com
directory (containingsun/cb/CoffeeBreak.properties
) from the context root toWEB-INF/classes/
.- Add the JAX-RPC client library in
<
INSTALL
>/j2eetutorial14/examples/cb/jaxrpc/dist/jaxrpc-client.jar
to the module.- Add the SAAJ client library in
<
INSTALL
>/j2eetutorial14/examples/cb/saaj/dist/saaj-client.jar
to the module.- Create a
Dispatcher
Web component. Choose the Servlet component type.- Add the aliases
/orderForm
,/checkoutForm
, and/checkoutAck
to theDispatcher
component.- Add the
RetailPriceListServlet
Web component to the existingcbserver
WAR.- Add the alias
/loadPriceList
to theRetailPriceListServlet
component.- Add a resource reference of type
javax.xml.registry.ConnectionFactory
namedeis/JAXR
mapped to the JAXR connection factoryeis/JAXR
.- Add a JSP property group named
cbserver
. The property group applies to the URL pattern*.jsp
. Add the include prelude/template/prelude.jspf
.- Add a context parameter named
javax.servlet.jsp.jstl.fmt.localizationContext
and valuecom.sun.cb.messages.CBMessages
.- Add the context parameter that specifies the URL of the registry server. The parameter is named
registryURL
and the value ishttp://localhost:
port
/RegistryServer/
, whereport
is the port at which the registry server is running.- Specify a security constraint for
RetailPriceListServlet
.
- Select Basic as the User Authentication Method.
- Click Settings and enter
file
in the Realm Name field. Click OK.- Add a security constraint and a web resource collection. Use the default names provided by
deploytool
.- Add the URL
/loadPriceList
to the web resource collection.- Select the
GET
HTTP method.- Add the security role
admin
.- Map the
admin
role to theadmin
user.- Save the module.
- Deploy the module.
Building, Packaging, and Deploying the JavaServer Faces Technology Coffee Break Server
To build the JavaServer Faces technology version of the Coffee Break server, follow these steps:
To package and deploy the JavaServer Faces technology version of the Coffee Break server using
asant
, follow these steps:To package and deploy the JavaServer Faces technology version of the Coffee Break server using
deploytool
, follow these steps:
- Start
deploytool
.- Create a stand-alone Web module called
cbserver-jsf in <
INSTALL
>/j2eetutorial14/examples/cb/server-jsf/
.- Set the context root to
/cbserver-jsf
.- Add the content to the Web module.
- Add all the JSP pages,
coffeebreak.css
,faces-config.xml
,index.html
, and thetemplate
andcom
directories under<
INSTALL
>/j2eetutorial14/examples/cb/server-jsf/build/
to the module.- In the Web module contents editor, drag the
com
directory (containingsun/cb/CoffeeBreak.properties
) from the context root toWEB-INF/classes
.- Drag
faces-config.xml
to the root of theWEB-INF
directory.- Add the JSF API library from
<
J2EE_HOME
>/lib/jsf-api.jar
to the module.- Add the JAX-RPC client library in
<
INSTALL
>/j2eetutorial14/examples/cb/jaxrpc/dist/jaxrpc-client.jar
to the module.- Add the SAAJ client library in
<
INSTALL
>/j2eetutorial14/examples/cb/saaj/dist/saaj-client.jar
to the module.- Create a
FacesServlet
Web component. Choose the Servlet component type.- Add the aliases
/faces/*
and*.jsf
to theFacesServlet
component.- Add a resource reference of type
javax.xml.registry.ConnectionFactory
namedeis/JAXR
mapped to the JAXR connection factoryeis/JAXR
.- Add a JSP property group named
cbserver-jsf
. The property group applies to the URL pattern*.jsp
. Add the include prelude/template/prelude.jspf
.- Add the context parameter that specifies the URL of the registry server. The parameter is named
registryURL
and the value ishttp://localhost:
port
/RegistryServer/
, whereport
is the port at which the registry server is running.- Save the module.
- Deploy the module.
Running the Coffee Break Client
After you have installed all the Web applications, check that all the applications are running in deploytool or the Admin Console. You should see
cbserver
(orcbserver-jsf
),jaxrpc-coffee-supplier
, andsaaj-coffee-supplier
in the list of applications.If you have installed the non-GUI framework version of the Coffee Break server, you can run the Coffee Break client by opening the Coffee Break server URL in a Web browser:
If you have installed the JavaServer Faces technology version of the Coffee Break server, you can run the JavaServer Faces version of the Coffee Break client by opening this URL in a Web browser:
You should see a page something like the one shown in Figure 35-2.
![]()
After you have gone through the application screens, you will get an order confirmation that looks like the one shown in Figure 35-3.
![]()
Figure 35-3 Order Confirmation
Removing the Coffee Break Application
To remove the Coffee Break application, perform the following steps:
If you want to remove the
build
anddist
directories, runant
clean
in each directory, including<
INSTALL
>/j2eetutorial14/examples/cb/common/
.
Note: You should undeploy the Coffee Break Web applications before you stop the Application Server. When the Application Server is restarted, it loads the Registry Server after other deployed applications. When the deployed Coffee Break Web applications are started by the Application Server, they will not be able to access the Registry Server and thus will not be able to complete their initialization.
Download
Home History |
![]() ![]() ![]() |
API
Search Feedback FAQ |
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.