<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>
   <display-name>Entity Book Accessor</display-name>
   
   <welcome-file-list>
      <welcome-file>index.jsp</welcome-file>
   </welcome-file-list>

   <ejb-ref>
      <ejb-ref-name>ejb/BookLocalHome</ejb-ref-name>
      <ejb-ref-type>Entity</ejb-ref-type>
      <home>ejava.examples.ejb.entity.bean.BookLocalHome</home>
      <remote>ejava.examples.ejb.entity.bean.BookLocal</remote>
      <ejb-link>Book</ejb-link>
   </ejb-ref>
   <ejb-ref>
      <ejb-ref-name>ejb/BMPBookLocalHome</ejb-ref-name>
      <ejb-ref-type>Entity</ejb-ref-type>
      <home>ejava.examples.ejb.entity.bean.BookLocalHome</home>
      <remote>ejava.examples.ejb.entity.bean.BookLocal</remote>
      <ejb-link>BookBMP</ejb-link>
   </ejb-ref>
<!--
   <ejb-local-ref>
      <ejb-ref-name>ejb/BookLocalHome</ejb-ref-name>
      <ejb-ref-type>Entity</ejb-ref-type>
      <local-home>ejava.examples.ejb.entity.bean.BookLocalHome</local-home>
      <local>ejava.examples.ejb.entity.bean.BookLocal</local>
      <ejb-link>BookEJB</ejb-link>
   </ejb-local-ref>
-->   
</web-app>


