[jboss-cvs] JBossAS SVN: r81891 - in trunk/server/src/etc: deploy and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Dec 1 06:43:57 EST 2008


Author: dimitris at jboss.org
Date: 2008-12-01 06:43:56 -0500 (Mon, 01 Dec 2008)
New Revision: 81891

Added:
   trunk/server/src/etc/deploy/legacy-invokers-service.xml
Removed:
   trunk/server/src/etc/deploy/remoting-service.xml
Modified:
   trunk/server/src/etc/conf/default/bootstrap/bindings.xml
Log:
JBAS-5348, rename remoting-service.xml to legacy-invokers-service.xml

Modified: trunk/server/src/etc/conf/default/bootstrap/bindings.xml
===================================================================
--- trunk/server/src/etc/conf/default/bootstrap/bindings.xml	2008-12-01 11:42:58 UTC (rev 81890)
+++ trunk/server/src/etc/conf/default/bootstrap/bindings.xml	2008-12-01 11:43:56 UTC (rev 81891)
@@ -143,7 +143,7 @@
                <property name="port">8888</property>
             </bean-->
 
-            <!-- ********************* deploy/remoting-service.xml ****************** -->
+            <!-- ********************* deploy/legacy-invokers-service.xml ****************** -->
 
             <!-- RMI/JRMP invoker -->
             <bean class="org.jboss.services.binding.ServiceBindingMetadata">

Copied: trunk/server/src/etc/deploy/legacy-invokers-service.xml (from rev 81881, trunk/server/src/etc/deploy/remoting-service.xml)
===================================================================
--- trunk/server/src/etc/deploy/legacy-invokers-service.xml	                        (rev 0)
+++ trunk/server/src/etc/deploy/legacy-invokers-service.xml	2008-12-01 11:43:56 UTC (rev 81891)
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- $Id: jboss-service.xml 70749 2008-03-11 20:09:45Z sguilhen at redhat.com $ -->
+
+<!-- ======================================================================= -->
+<!-- Legacy invokers to the JMX node                                         -->
+<!-- ======================================================================= -->
+<server>
+
+   <!-- RMI/JRMP invoker -->
+   <mbean code="org.jboss.invocation.jrmp.server.JRMPInvoker"
+      name="jboss:service=invoker,type=jrmp">
+      <attribute name="RMIObjectPort">
+         <value-factory bean="ServiceBindingManager" method="getIntBinding" parameter="jboss:service=invoker,type=jrmp"/>
+      </attribute>
+      <attribute name="ServerAddress">${jboss.bind.address}</attribute>
+      <!--
+      <attribute name="RMIClientSocketFactory">custom</attribute>
+      <attribute name="RMIServerSocketFactory">custom</attribute>
+      <attribute name="RMIServerSocketAddr">custom</attribute>
+      <attribute name="SecurityDomain">ssl-domain-name</attribute>
+      -->
+      <depends>jboss:service=TransactionManager</depends>
+   </mbean>
+
+   <mbean code="org.jboss.invocation.local.LocalInvoker"
+      name="jboss:service=invoker,type=local">
+
+      <depends>jboss:service=TransactionManager</depends>
+   </mbean>
+
+   <mbean code="org.jboss.invocation.pooled.server.PooledInvoker"
+      name="jboss:service=invoker,type=pooled">
+      <attribute name="NumAcceptThreads">1</attribute>
+      <attribute name="MaxPoolSize">300</attribute>
+      <attribute name="ClientMaxPoolSize">300</attribute>
+      <attribute name="SocketTimeout">300000</attribute>
+      <attribute name="ServerBindAddress">${jboss.bind.address}</attribute>
+      <attribute name="ServerBindPort">
+         <value-factory bean="ServiceBindingManager" method="getIntBinding" parameter="jboss:service=invoker,type=pooled"/>
+      </attribute>
+      <attribute name="ClientConnectAddress">${jboss.bind.address}</attribute>
+      <attribute name="ClientConnectPort">0</attribute>
+      <attribute name="ClientRetryCount">1</attribute>
+      <attribute name="EnableTcpNoDelay">false</attribute>
+
+      <!-- Customized socket factory attributes
+      <attribute name="ClientSocketFactoryName">custom.client.factory</attribute>
+      <attribute name="ServerSocketFactoryName">custom.server.factory</attribute>
+      <attribute name="SslDomain">java:/jaas/pooledInvoker</attribute>
+      -->
+      <depends optional-attribute-name="TransactionManagerService">jboss:service=TransactionManager</depends>
+   </mbean>
+
+</server>


Property changes on: trunk/server/src/etc/deploy/legacy-invokers-service.xml
___________________________________________________________________
Name: svn:mergeinfo
   + 

Deleted: trunk/server/src/etc/deploy/remoting-service.xml
===================================================================
--- trunk/server/src/etc/deploy/remoting-service.xml	2008-12-01 11:42:58 UTC (rev 81890)
+++ trunk/server/src/etc/deploy/remoting-service.xml	2008-12-01 11:43:56 UTC (rev 81891)
@@ -1,60 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!-- $Id: jboss-service.xml 70749 2008-03-11 20:09:45Z sguilhen at redhat.com $ -->
-
-<!-- ===================================================================== -->
-<!--  JBoss Server Configuration                                           -->
-<!-- ===================================================================== -->
-
-<server>
-   
-   <!-- ==================================================================== -->
-   <!-- Invokers to the JMX node                                             -->
-   <!-- ==================================================================== -->
-
-   <!-- RMI/JRMP invoker -->
-   <mbean code="org.jboss.invocation.jrmp.server.JRMPInvoker"
-      name="jboss:service=invoker,type=jrmp">
-      <attribute name="RMIObjectPort">
-         <value-factory bean="ServiceBindingManager" method="getIntBinding" parameter="jboss:service=invoker,type=jrmp"/>
-      </attribute>
-      <attribute name="ServerAddress">${jboss.bind.address}</attribute>
-      <!--
-      <attribute name="RMIClientSocketFactory">custom</attribute>
-      <attribute name="RMIServerSocketFactory">custom</attribute>
-      <attribute name="RMIServerSocketAddr">custom</attribute>
-      <attribute name="SecurityDomain">ssl-domain-name</attribute>
-      -->
-      <depends>jboss:service=TransactionManager</depends>
-   </mbean>
-
-   <mbean code="org.jboss.invocation.local.LocalInvoker"
-      name="jboss:service=invoker,type=local">
-
-      <depends>jboss:service=TransactionManager</depends>
-   </mbean>
-
-   <mbean code="org.jboss.invocation.pooled.server.PooledInvoker"
-      name="jboss:service=invoker,type=pooled">
-      <attribute name="NumAcceptThreads">1</attribute>
-      <attribute name="MaxPoolSize">300</attribute>
-      <attribute name="ClientMaxPoolSize">300</attribute>
-      <attribute name="SocketTimeout">300000</attribute>
-      <attribute name="ServerBindAddress">${jboss.bind.address}</attribute>
-      <attribute name="ServerBindPort">
-         <value-factory bean="ServiceBindingManager" method="getIntBinding" parameter="jboss:service=invoker,type=pooled"/>
-      </attribute>
-      <attribute name="ClientConnectAddress">${jboss.bind.address}</attribute>
-      <attribute name="ClientConnectPort">0</attribute>
-      <attribute name="ClientRetryCount">1</attribute>
-      <attribute name="EnableTcpNoDelay">false</attribute>
-
-      <!-- Customized socket factory attributes
-      <attribute name="ClientSocketFactoryName">custom.client.factory</attribute>
-      <attribute name="ServerSocketFactoryName">custom.server.factory</attribute>
-      <attribute name="SslDomain">java:/jaas/pooledInvoker</attribute>
-      -->
-      <depends optional-attribute-name="TransactionManagerService">jboss:service=TransactionManager</depends>
-   </mbean>
-
-</server>




More information about the jboss-cvs-commits mailing list