[jboss-cvs] JBossAS SVN: r60134 - trunk/server/src/resources/dtd.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jan 31 08:14:48 EST 2007


Author: thomas.diesler at jboss.com
Date: 2007-01-31 08:14:47 -0500 (Wed, 31 Jan 2007)
New Revision: 60134

Added:
   trunk/server/src/resources/dtd/service-ref_4_0.dtd
Modified:
   trunk/server/src/resources/dtd/jboss-client_4_0.dtd
   trunk/server/src/resources/dtd/jboss-web_4_0.dtd
   trunk/server/src/resources/dtd/jboss_4_0.dtd
Log:
Externalize service-ref_4_0.dtd

Modified: trunk/server/src/resources/dtd/jboss-client_4_0.dtd
===================================================================
--- trunk/server/src/resources/dtd/jboss-client_4_0.dtd	2007-01-31 13:09:53 UTC (rev 60133)
+++ trunk/server/src/resources/dtd/jboss-client_4_0.dtd	2007-01-31 13:14:47 UTC (rev 60134)
@@ -11,6 +11,9 @@
        "http://www.jboss.org/j2ee/dtd/jboss-client_4_0.dtd">
 -->
 
+<!ENTITY % service-ref SYSTEM "./docs/dtd/service-ref_4_0.dtd"> 
+%service-ref;
+
 <!-- The jboss-client element is the root element.
 -->
 <!ELEMENT jboss-client (jndi-name, ejb-ref*, service-ref*, resource-ref*,
@@ -119,81 +122,3 @@
 -->
 <!ELEMENT res-url (#PCDATA)>
 
-<!-- The service-ref element provides jboss specific deployment values to
-the web service reference in application-client.xml.
-Example:
-    <service-ref>
-        <service-ref-name>OrganizationService</service-ref-name>
-        <wsdl-override>file:/wsdlRepository/organization-service.wsdl</wsdl-override>
-    </service-ref>
-
-    <service-ref>
-        <service-ref-name>OrganizationService</service-ref-name>
-        <config-name>Secure Client Config</config-name>
-        <config-file>META-INF/jbossws-client-config.xml</config-file>
-        <port-component-ref>
-          <service-endpoint-interface>com.dot.SEI</service-endpoint-interface>
-          <call-property>
-            <prop-name>X</prop-name>
-            <prop-value>Y</prop-value>
-          </call-property>
-        </port-component-ref>
-    </service-ref>
--->
-<!ELEMENT service-ref (service-ref-name, config-name?, config-file?, port-component-ref*, wsdl-override?, call-property*)>
-
-<!-- The service-ref-name element gives the ENC relative name used
-in the ejb-jar.xml service-ref-name element.
-
-Used in: service-ref
--->
-<!ELEMENT service-ref-name (#PCDATA)>
-
-<!-- The optional config-name element gives the client configuration name that must be present in
-the configuration given by element config-file. 
-	
-The default is: Standard Client
-
-Used in: service-ref
--->
-<!ELEMENT config-name (#PCDATA)>
-
-<!-- The optional config-file element gives the to a URL or resource name for the client configuration.
-The default is: META-INF/standard-jbossws-client-config.xml
-
-Used in: service-ref
--->
-<!ELEMENT config-file (#PCDATA)>
-
-<!-- The port-component-ref element provides additional information about
-the standard j2ee service-reference/port-component-ref. Currently this includes
-properties that should be associated with the call/stub for the port.
-
-Used in: service-ref
--->
-<!ELEMENT port-component-ref (service-endpoint-interface?, call-property*)>
-
-<!-- The wsdl-override element the actual wsdl docuement the web service client
-uses to connect to the remote service. It overrides the value of wsdl-file in ejb-jar.xml.
-
-Used in: service-ref
--->
-<!ELEMENT wsdl-override (#PCDATA)>
-
-<!-- Fully qualified name of service endpoint interface
--->
-<!ELEMENT service-endpoint-interface ( #PCDATA )>
-
-<!-- Arbitrary jaxrpc property values that should be set on a Call object
-before it's returned to the web service client. The valid properties can be any
-properties supported by the jaxrpc Call implementation.
--->
-<!ELEMENT call-property ( prop-name, prop-value )>
-
-<!-- The string value of a property name
--->
-<!ELEMENT prop-name (#PCDATA)>
-
-<!-- The string value of a property value
--->
-<!ELEMENT prop-value (#PCDATA)>

Modified: trunk/server/src/resources/dtd/jboss-web_4_0.dtd
===================================================================
--- trunk/server/src/resources/dtd/jboss-web_4_0.dtd	2007-01-31 13:09:53 UTC (rev 60133)
+++ trunk/server/src/resources/dtd/jboss-web_4_0.dtd	2007-01-31 13:14:47 UTC (rev 60134)
@@ -12,6 +12,9 @@
 
 -->
 
+<!ENTITY % service-ref SYSTEM "./docs/dtd/service-ref_4_0.dtd"> 
+%service-ref;
+
 <!-- The jboss-web element is the root element.
 -->
 <!ELEMENT jboss-web (class-loading?, security-domain?, context-root?,
@@ -361,84 +364,6 @@
 -->
 <!ELEMENT replication-field-batch-mode (true|false)>
 
-<!-- The service-ref element provides jboss specific deployment values to
-the web service reference in web.xml.
-Example:
-    <service-ref>
-        <service-ref-name>OrganizationService</service-ref-name>
-        <wsdl-override>file:/wsdlRepository/organization-service.wsdl</wsdl-override>
-    </service-ref>
-
-    <service-ref>
-        <service-ref-name>OrganizationService</service-ref-name>
-        <config-name>Secure Client Config</config-name>
-        <config-file>META-INF/jbossws-client-config.xml</config-file>
-        <port-component-ref>
-          <service-endpoint-interface>com.dot.SEI</service-endpoint-interface>
-          <call-property>
-            <prop-name>X</prop-name>
-            <prop-value>Y</prop-value>
-          </call-property>
-        </port-component-ref>
-    </service-ref>
--->
-<!ELEMENT service-ref (service-ref-name, config-name?, config-file?, port-component-ref*, wsdl-override?, call-property*)>
-
-<!-- The service-ref-name element gives the ENC relative name used
-in the ejb-jar.xml service-ref-name element.
-
-Used in: service-ref
--->
-<!ELEMENT service-ref-name (#PCDATA)>
-<!-- The optional config-name element gives the client configuration name that must be present in
-the configuration given by element config-file. 
-	
-The default is: Standard Client
-
-Used in: service-ref, webservice-description
--->
-<!ELEMENT config-name (#PCDATA)>
-
-<!-- The optional config-file element gives the to a URL or resource name for the client configuration.
-The default is: META-INF/standard-jbossws-client-config.xml
-
-Used in: service-ref, webservice-description
--->
-<!ELEMENT config-file (#PCDATA)>
-
-<!-- The port-component-ref element provides additional information about
-the standard j2ee service-reference/port-component-ref. Currently this includes
-properties that should be associated with the call/stub for the port.
-
-Used in: service-ref
--->
-<!ELEMENT port-component-ref (service-endpoint-interface?, call-property*)>
-
-<!-- The wsdl-override element the actual wsdl docuement the web service client
-uses to connect to the remote service. It overrides the value of wsdl-file in ejb-jar.xml.
-
-Used in: service-ref
--->
-<!ELEMENT wsdl-override (#PCDATA)>
-
-<!-- Fully qualified name of service endpoint interface
--->
-<!ELEMENT service-endpoint-interface ( #PCDATA )>
-
-<!-- Arbitrary jaxrpc property values that should be set on a Call object
-before it's returned to the web service client. The valid properties can be any
-properties supported by the jaxrpc Call implementation.
--->
-<!ELEMENT call-property ( prop-name, prop-value )>
-
-<!-- The string value of a property name
--->
-<!ELEMENT prop-name (#PCDATA)>
-
-<!-- The string value of a property value
--->
-<!ELEMENT prop-value (#PCDATA)>
-
 <!--
 Runtime information about a web service.
 

Modified: trunk/server/src/resources/dtd/jboss_4_0.dtd
===================================================================
--- trunk/server/src/resources/dtd/jboss_4_0.dtd	2007-01-31 13:09:53 UTC (rev 60133)
+++ trunk/server/src/resources/dtd/jboss_4_0.dtd	2007-01-31 13:14:47 UTC (rev 60134)
@@ -151,6 +151,9 @@
 </jboss>
 -->
 
+<!ENTITY % service-ref SYSTEM "./docs/dtd/service-ref_4_0.dtd"> 
+%service-ref;
+
 <!--
   The jboss element is the root element of the jboss.xml file. It
   contains all the information used by jboss but not described in the
@@ -688,78 +691,6 @@
 -->
 <!ELEMENT ejb-local-ref (ejb-ref-name , local-jndi-name)>
 
-<!-- The service-ref element provides jboss specific deployment values to
-the web service reference in ejb-jar.xml.
-Example:
-    <service-ref>
-        <service-ref-name>OrganizationService</service-ref-name>
-        <wsdl-override>file:/wsdlRepository/organization-service.wsdl</wsdl-override>
-    </service-ref>
-
-    <service-ref>
-        <service-ref-name>OrganizationService</service-ref-name>
-        <config-name>Secure Client Config</config-name>
-        <config-file>META-INF/jbossws-client-config.xml</config-file>
-        <port-component-ref>
-          <service-endpoint-interface>com.dot.SEI</service-endpoint-interface>
-          <call-property>
-            <prop-name>X</prop-name>
-            <prop-value>Y</prop-value>
-          </call-property>
-        </port-component-ref>
-    </service-ref>
--->
-<!ELEMENT service-ref (service-ref-name, config-name?, config-file?, port-component-ref*, wsdl-override?, call-property*)>
-
-<!-- The service-ref-name element gives the ENC relative name used
-in the ejb-jar.xml service-ref-name element.
-
-Used in: service-ref
--->
-<!ELEMENT service-ref-name (#PCDATA)>
-
-<!-- The optional config-name element gives the client configuration name that must be present in
-the configuration given by element config-file. 
-	
-The default is: Standard Client
-
-Used in: service-ref, webservice-description
--->
-<!ELEMENT config-name (#PCDATA)>
-
-<!-- The optional config-file element gives the to a URL or resource name for the client configuration.
-The default is: META-INF/standard-jbossws-client-config.xml
-
-Used in: service-ref, webservice-description
--->
-<!ELEMENT config-file (#PCDATA)>
-
-<!-- The port-component-ref element provides additional information about
-the standard j2ee service-reference/port-component-ref. Currently this includes
-properties that should be associated with the call/stub for the port.
-
-Used in: service-ref
--->
-<!ELEMENT port-component-ref (service-endpoint-interface?, call-property*)>
-
-<!-- Fully qualified name of service endpoint interface
--->
-<!ELEMENT service-endpoint-interface ( #PCDATA )>
-
-<!-- Arbitrary jaxrpc property values that should be set on a Call object
-before it's returned to the web service client. The valid properties can be any
-properties supported by the jaxrpc Call implementation.
--->
-<!ELEMENT call-property ( prop-name, prop-value )>
-
-<!-- The string value of a property name
--->
-<!ELEMENT prop-name (#PCDATA)>
-
-<!-- The string value of a property value
--->
-<!ELEMENT prop-value (#PCDATA)>
-
 <!--
   The security-identity element specifies whether a specific run-as identity is to be
   used. If there is a run-as role defined for an enterprise bean, there can also be a

Added: trunk/server/src/resources/dtd/service-ref_4_0.dtd
===================================================================
--- trunk/server/src/resources/dtd/service-ref_4_0.dtd	                        (rev 0)
+++ trunk/server/src/resources/dtd/service-ref_4_0.dtd	2007-01-31 13:14:47 UTC (rev 60134)
@@ -0,0 +1,87 @@
+<?xml version='1.0' encoding='UTF-8'?>
+
+<!-- 
+	$Id: jboss-client_5_0.dtd 58121 2006-11-04 19:57:58Z thomas.diesler at jboss.com $
+-->
+
+
+<!-- 
+  The service-ref element provides jboss specific deployment values to
+  the web service reference in application-client.xml.
+  
+  Example:
+    <service-ref>
+        <service-ref-name>OrganizationService</service-ref-name>
+        <wsdl-override>file:/wsdlRepository/organization-service.wsdl</wsdl-override>
+    </service-ref>
+
+    <service-ref>
+        <service-ref-name>OrganizationService</service-ref-name>
+        <config-name>Secure Client Config</config-name>
+        <config-file>META-INF/jbossws-client-config.xml</config-file>
+        <port-component-ref>
+          <service-endpoint-interface>com.dot.SEI</service-endpoint-interface>
+          <call-property>
+            <prop-name>X</prop-name>
+            <prop-value>Y</prop-value>
+          </call-property>
+        </port-component-ref>
+    </service-ref>
+-->
+<!ELEMENT service-ref (service-ref-name, config-name?, config-file?, port-component-ref*, wsdl-override?, call-property*)>
+
+<!-- The service-ref-name element gives the ENC relative name used
+in the ejb-jar.xml service-ref-name element.
+
+Used in: service-ref
+-->
+<!ELEMENT service-ref-name (#PCDATA)>
+
+<!-- The optional config-name element gives the client configuration name that must be present in
+the configuration given by element config-file. 
+	
+The default is: Standard Client
+
+Used in: service-ref
+-->
+<!ELEMENT config-name (#PCDATA)>
+
+<!-- The optional config-file element gives the to a URL or resource name for the client configuration.
+The default is: META-INF/standard-jbossws-client-config.xml
+
+Used in: service-ref
+-->
+<!ELEMENT config-file (#PCDATA)>
+
+<!-- The port-component-ref element provides additional information about
+the standard j2ee service-reference/port-component-ref. Currently this includes
+properties that should be associated with the call/stub for the port.
+
+Used in: service-ref
+-->
+<!ELEMENT port-component-ref (service-endpoint-interface?, call-property*)>
+
+<!-- The wsdl-override element the actual wsdl docuement the web service client
+uses to connect to the remote service. It overrides the value of wsdl-file in ejb-jar.xml.
+
+Used in: service-ref
+-->
+<!ELEMENT wsdl-override (#PCDATA)>
+
+<!-- Fully qualified name of service endpoint interface
+-->
+<!ELEMENT service-endpoint-interface ( #PCDATA )>
+
+<!-- Arbitrary jaxrpc property values that should be set on a Call object
+before it's returned to the web service client. The valid properties can be any
+properties supported by the jaxrpc Call implementation.
+-->
+<!ELEMENT call-property ( prop-name, prop-value )>
+
+<!-- The string value of a property name
+-->
+<!ELEMENT prop-name (#PCDATA)>
+
+<!-- The string value of a property value
+-->
+<!ELEMENT prop-value (#PCDATA)>




More information about the jboss-cvs-commits mailing list