<?xml version="1.0"?>
<!DOCTYPE application PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN" "http://java.sun.com/j2ee/dtds/application_1_2.dtd">

<application>

   <!-- The display-name element specifies the human-readable name of this
        application. It is not used to identify the application. -->

   <display-name>Hello Planet</display-name>


   <!-- The EJB module. All that needs to be specified is the location of the
        EJB JAR file. -->

   <module>
      <ejb>hello-planet-ejb.jar</ejb>
   </module>


   <!-- The web module. The context-root specifies how the web-application can
        be reached from a browser. The web-uri element specifies the location
        of the WAR file that contains the web application. -->

   <module>
      <web>
         <web-uri>hello-planet-web.war</web-uri>
         <context-root>/hello-planet</context-root>
      </web>
   </module>

</application>
