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

<web-app>
   <display-name>Bank Session Bean Accessor</display-name>
   
   <welcome-file-list>
      <welcome-file>index.jsp</welcome-file>
   </welcome-file-list>

   <ejb-ref>
      <ejb-ref-name>ejb/TellerRemoteHome</ejb-ref-name>
      <ejb-ref-type>Session</ejb-ref-type>
      <home>ejava.examples.ejb.session.bean.TellerRemoteHome</home>
      <remote>ejava.examples.ejb.session.bean.TellerRemote</remote>
      <ejb-link>Teller</ejb-link>
   </ejb-ref>
   
   <ejb-ref>
      <ejb-ref-name>ejb/QueryLocalHome</ejb-ref-name>
      <ejb-ref-type>Session</ejb-ref-type>
      <home>ejava.examples.ejb.session.bean.QueryLocalHome</home>
      <remote>ejava.examples.ejb.session.bean.QueryLocal</remote>
      <ejb-link>Query</ejb-link>
   </ejb-ref>
</web-app>


