If creating an .ear file from the ejb20_jar and ejb20_war to combine
the server and client as a single deployable .ear on the server, the 
following application.xml file should be included in the META-INF subdirectory.

It assumes the filenames are hellocobol.jar and hellocobol.war.

This project must export its ejb.jar in order to be used by the 
corresponding .war project.  This is done by right-clicking the project,
selecting Properties, then Java Build Path.  Under Order and Export,
check the ejb.jar so it may be used by other projects depending upon
this project.

---------------
application.xml
---------------

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

<!DOCTYPE application PUBLIC '-//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN' 'http://java.sun.com/j2ee/dtds/application_1_2.dtd'>

<application>
  <icon>
    <small-icon></small-icon>
    <large-icon></large-icon>
  </icon>
  <display-name>HelloCobol</display-name>
  <module>
    <ejb>hellocobolEjb.jar</ejb>
  </module>
  <module>
    <web>
      <web-uri>hellocobol.war</web-uri>
      <context-root>hellocobol</context-root>
    </web>
  </module>
</application>
