User: starksm 
  Date: 02/02/16 19:03:05

  Modified:    src/resources/web/META-INF ejb-jar.xml
  Log:
  Add local interfaces, references, and update the web.xml doctype to 2.3
  
  Revision  Changes    Path
  1.5       +10 -0     jbosstest/src/resources/web/META-INF/ejb-jar.xml
  
  Index: ejb-jar.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/src/resources/web/META-INF/ejb-jar.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ejb-jar.xml       22 May 2001 04:03:27 -0000      1.4
  +++ ejb-jar.xml       17 Feb 2002 03:03:05 -0000      1.5
  @@ -1,5 +1,11 @@
   <?xml version="1.0" encoding="UTF-8"?>
  +<!DOCTYPE ejb-jar PUBLIC
  +   "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN"
  +   "http://java.sun.com/dtd/ejb-jar_2_0.dtd";>
  +
   <ejb-jar>
  +   <description>WebApp Integration Tests</description>
  +
       <enterprise-beans>
           <session>
               <description>Referenced Bean0</description>
  @@ -7,6 +13,8 @@
               <ejb-class>org.jboss.test.web.ejb.StatelessSessionBean</ejb-class>
               <home>org.jboss.test.web.interfaces.StatelessSessionHome</home>
               <remote>org.jboss.test.web.interfaces.StatelessSession</remote>
  +            
<local-home>org.jboss.test.web.interfaces.StatelessSessionLocalHome</local-home>
  +            <local>org.jboss.test.web.interfaces.StatelessSessionLocal</local>
               <session-type>Stateless</session-type>
               <transaction-type>Container</transaction-type>
           </session>
  @@ -50,6 +58,8 @@
               <ejb-class>org.jboss.test.web.ejb.StatelessSessionBean2</ejb-class>
               <home>org.jboss.test.web.interfaces.StatelessSessionHome</home>
               <remote>org.jboss.test.web.interfaces.StatelessSession</remote>
  +            
<local-home>org.jboss.test.web.interfaces.StatelessSessionLocalHome</local-home>
  +            <local>org.jboss.test.web.interfaces.StatelessSessionLocal</local>
               <session-type>Stateless</session-type>
               <transaction-type>Container</transaction-type>
           </session>
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to