User: stark
Date: 01/03/14 18:49:11
Modified: src/resources/org/jboss/metadata jboss.dtd
Log:
Update the container-invoker-conf element content model and add the
RMIClientSocketFactory and RMIServerSocketFactory elements.
Revision Changes Path
1.4 +35 -1 jboss/src/resources/org/jboss/metadata/jboss.dtd
Index: jboss.dtd
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/resources/org/jboss/metadata/jboss.dtd,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- jboss.dtd 2001/03/05 10:47:31 1.3
+++ jboss.dtd 2001/03/15 02:49:10 1.4
@@ -458,7 +458,7 @@
Used in: container-configuration
-->
-<!ELEMENT container-invoker-conf (Optimized , RMIObjectPort)>
+<!ELEMENT container-invoker-conf (Optimized , RMIObjectPort,
RMIClientSocketFactory?, RMIServerSocketFactory?)>
<!--
This element is only valid if the container invoker is
@@ -489,6 +489,40 @@
Used in: container-invoker-conf for JRMPContainerInvoker
-->
<!ELEMENT RMIObjectPort (#PCDATA)>
+
+<!--
+ The RMIClientSocketFactory element indicates the use of a custom
+ socket factory that should be used by RMI objects created by
+ this container. The combination of socket factory type and port
+ must be unique but more than one container can use the same
+ socket factory, port combination.
+
+ Its value must be the fully qualified name of the class that
+ implements the java.rmi.server.RMIClientSocketFactory interface,
+ and the class must be available to the JBoss class loader.
+ If this element is not specified the default VM client socket
+ factory will be used.
+
+ Used in: container-invoker-conf for JRMPContainerInvoker
+ -->
+<!ELEMENT RMIClientSocketFactory (#PCDATA)>
+
+<!--
+ The RMIServerSocketFactory element indicates the use of a custom
+ socket factory that should be used by RMI objects created by
+ this container. The combination of socket factory type and port
+ must be unique but more than one container can use the same
+ socket factory, port combination.
+
+ Its value must be the fully qualified name of the class that
+ implements the java.rmi.server.RMIServerSocketFactory interface,
+ and the class must be available to the JBoss class loader.
+ If this element is not specified the default VM server socket
+ factory will be used.
+
+ Used in: container-invoker-conf for JRMPContainerInvoker
+ -->
+<!ELEMENT RMIServerSocketFactory (#PCDATA)>
<!--
The container-cache-conf element holds dynamic configuration data