User: starksm 
  Date: 02/02/15 20:43:36

  Modified:    src/resources/org/jboss/metadata jboss-web.dtd
  Added:       src/resources/org/jboss/metadata jboss-web_3_0.dtd
  Log:
  Add a new jboss-web_3_0.dtd descriptor
  
  Revision  Changes    Path
  1.5       +3 -2      jboss/src/resources/org/jboss/metadata/jboss-web.dtd
  
  Index: jboss-web.dtd
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/resources/org/jboss/metadata/jboss-web.dtd,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- jboss-web.dtd     5 Jul 2001 19:06:10 -0000       1.4
  +++ jboss-web.dtd     16 Feb 2002 04:43:36 -0000      1.5
  @@ -1,7 +1,8 @@
   <?xml version='1.0' encoding='UTF-8' ?>
   
  -<!-- The JBoss specific elements used to integrate the servlet web.xml elements 
into a
  -JBoss deployment.
  +<!-- The JBoss specific elements used to integrate the servlet 2.2 web.xml
  +elements into a JBoss deployment. This version applies to the JBoss 2.4 and
  +earlier series. See the jboss-web_3_0.dtd for changes available only in 3.x.
   
   DOCTYPE jboss-web
       PUBLIC "-//JBoss//DTD Web Application 2.2//EN"
  
  
  
  1.1                  jboss/src/resources/org/jboss/metadata/jboss-web_3_0.dtd
  
  Index: jboss-web_3_0.dtd
  ===================================================================
  <?xml version='1.0' encoding='UTF-8' ?>
  
  <!-- The JBoss specific elements used to integrate the servlet 2.3 web.xml
  elements into a JBoss deployment. This version applies to the JBoss 3.x
  releases.
  
  DOCTYPE jboss-web
      PUBLIC "-//JBoss//DTD Web Application 2.3//EN"
      "http://www.jboss.org/j2ee/dtd/jboss-web_3_0.dtd";
  -->
  
  <!-- The jboss-web element is the root element.
  -->
  <!ELEMENT jboss-web (context-root?, security-domain?, resource-env-ref*,
  resource-ref* , ejb-ref*)>
  
  <!-- The context-root element specifies the context root of a web
  application. This is normally specified at the ear level using the standard
  J2EE application.xml descriptor, but it may be given here for standalone wars.
  This should not override the application.xml level specification.
  -->
  <!ELEMENT context-root (#PCDATA)>
  
  <!-- The security-domain element allows one to specify a module wide
  security manager domain. It specifies the JNDI name of the security
  manager that implements the org.jboss.security.AuthenticationManager and
  org.jboss.security.RealmMapping interfaces for the domain.
  -->
  <!ELEMENT security-domain (#PCDATA)>
  
  <!--The resource-env-ref element maps from the servlet ENC relative name
  of the resource-env-ref to the deployment environment JNDI name of
  the administered object resource.
  Example:
      <resource-env-ref>
          <resource-env-ref-name>jms/NewsTopic</resource-env-ref-name>
          <jndi-name>topic/NewsTopic</jndi-name>
      </resource-env-ref>
  -->
  <!ELEMENT resource-env-ref (resource-env-ref-name , jndi-name)>
  
  <!-- The resource-env-ref-name specifies the name of the web.xml
  resource-env-ref-name element which this mapping applies.
  -->
  <!ELEMENT resource-env-ref-name (#PCDATA)>
  
  <!--The resource-ref element maps from the servlet ENC relative name
  of the resource-ref to the deployment environment JNDI name of
  the resource manager connection factory.
  Example:
      <resource-ref>
          <res-ref-name>jdbc/TheDataSource</res-ref-name>
          <jndi-name>java:/DefaultDS</jndi-name>
      </resource-ref>
  -->
  <!ELEMENT resource-ref (res-ref-name , jndi-name)>
  
  <!-- The res-ref-name specifies the name of the web.xml res-ref-name element
  which this mapping applies.
  -->
  <!ELEMENT res-ref-name (#PCDATA)>
  
  <!-- The ejb-ref element maps from the servlet ENC relative name
  of the ejb reference to the deployment environment JNDI name of
  the bean.
  Example:
      <ejb-ref>
          <ejb-ref-name>ejb/Bean0</ejb-ref-name>
          <jndi-name>deployed/ejbs/Bean0</jndi-name>
      </ejb-ref>
  -->
  <!ELEMENT ejb-ref (ejb-ref-name , jndi-name)>
  
  <!-- The ejb-ref-name element gives the ENC relative name used
  in the web.xml ejb-ref-name element.
  
  Used in: ejb-ref
  -->
  <!ELEMENT ejb-ref-name (#PCDATA)>
  
  <!-- The jndi-name element specifies the JNDI name of the deployed
  object to which the servlet ENC binding will link to via a JNDI
  LinkRef.
  
  Used in: resource-ref, resource-env-ref, ejb-ref
  -->
  <!ELEMENT jndi-name (#PCDATA)>
  
  
  

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

Reply via email to