<?xml version="1.0"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">

<!--

   Web application descriptor for `AddressBook', a sample J2EE application
   that implements a simple address book using a few JSP pages and a single
   Container Managed Entity Bean.

   See:

      http://www.jollem.com/orion-cmp-primer/
      http://www.orionserver.com/docs/web.xml
-->


<web-app>


   <!-- A friendly name for this web application, this name can be used in
        visual development environments, for instance  -->

   <display-name>AddressBook Web Application</display-name>

   <!-- A human-readable description of this web application -->

   <description>Web module that contains an HTML welcome page, and 4
                JSP's.</description> 


   <!-- The file(s) to show when no file is specified, i.e. only the directory
        is specified. -->

   <welcome-file-list>
      <welcome-file>index.html</welcome-file>
   </welcome-file-list>


   <!-- A JNDI binding from "ejb/AddressBook" to the address book bean. This
        is the name we will use in our JSP pages. -->

   <ejb-ref>
      <ejb-ref-name>ejb/AddressBook</ejb-ref-name>
      <ejb-ref-type>Entity</ejb-ref-type>
      <home>addressbook.ejb.AddressBook</home>
      <remote>addressbook.ejb.AddressEntry</remote>
   </ejb-ref>

</web-app>
