User: starksm 
  Date: 01/06/09 17:20:18

  Modified:    src/resources/web/WEB-INF jboss-web.xml web.xml
  Log:
  Add doctype to jboss-web.xml
  Add test of ejb-ref in web.xml that is not in jboss-web.xml
  
  Revision  Changes    Path
  1.4       +4 -1      jbosstest/src/resources/web/WEB-INF/jboss-web.xml
  
  Index: jboss-web.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/src/resources/web/WEB-INF/jboss-web.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- jboss-web.xml     2001/05/22 04:03:27     1.3
  +++ jboss-web.xml     2001/06/10 00:20:18     1.4
  @@ -1,4 +1,7 @@
  -<?xml version="1.0" encoding="ISO-8859-1"?>
  +<?xml version="1.0" encoding="UTF-8"?>
  +<!DOCTYPE jboss-web
  +    PUBLIC "-//JBoss//DTD Web Application 2.2//EN"
  +    "http://www.jboss.org/j2ee/dtds/jboss-web.dtd";>
   
   <jboss-web>
       <security-domain>java:/jaas/other</security-domain>
  
  
  
  1.8       +8 -0      jbosstest/src/resources/web/WEB-INF/web.xml
  
  Index: web.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/src/resources/web/WEB-INF/web.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- web.xml   2001/06/01 14:08:49     1.7
  +++ web.xml   2001/06/10 00:20:18     1.8
  @@ -197,6 +197,14 @@
           <home>org.jboss.test.web.interfaces.StatelessSessionHome</home>
           <remote>org.jboss.test.web.interfaces.StatelessSession</remote>
       </ejb-ref>
  +    <!-- An ejb-ref that has no corresponding ejb-ref in jboss-web.xml -->
  +    <ejb-ref>
  +        <ejb-ref-name>ejb/bean2</ejb-ref-name>
  +        <ejb-ref-type>Session</ejb-ref-type>
  +        <ejb-link>ENCBean1</ejb-link>
  +        <home>org.jboss.test.web.interfaces.StatelessSessionHome</home>
  +        <remote>org.jboss.test.web.interfaces.StatelessSession</remote>
  +    </ejb-ref>
       <ejb-ref>
           <ejb-ref-name>ejb/SecuredEJB</ejb-ref-name>
           <ejb-ref-type>Session</ejb-ref-type>
  
  
  

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

Reply via email to