Assemble a Web services-enabled WAR into an EAR file


 

+

Search Tips   |   Advanced Search

 

  1. Start an assembly tool.
  2. Assemble the Web services-enabled WAR file into an EAR file.

In the following example, there is an application.xml deployment descriptor packaged with a Web services-enabled JAR file called AddressBook.jar that is packaged into an EAR file called AddressBook.ear. The EAR file contains:

META-INF/MANIFEST.MF
META-INF/application.xml
AddressBook.war

The application.xml deployment descriptor...

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE application 
          PUBLIC "-
//Sun Microsystems, Inc.
//DTD J2EE Application 1.3
//EN" 
          "http://java.sun.com/dtd/application_1_3.dtd">

  <application id="Application_ID">

    <display-name>AddressBook</display-name>
    <description>AddressBook Example from Java bean</description>

    <module id="WebModule_1">

      <web>
        <web-uri>AddressBook.war</web-uri>
        <context-root>/AddressBook</context-root>
      </web>

    </module>

  </application>

 

Related tasks

Assembly tools
Assemble a WAR file that is enabled for Web services from Java code
Assemble a Web services-enabled WAR file from a WSDL file