If creating an .ear file from the ejb20_jar and ejb20_war to combine
the server and client as a single .ear deployable 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 depends upon the corresponding .jar project for the definitions
of certain objects.  This is done by right-clicking the project,
selecting Properties, then Java Build Path.  Under Projects, check the
project containing the .jar file.

---------------
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>
