[jboss-cvs] JBoss Messaging SVN: r7851 - in branches/Branch_1_4/integration: EAP4/etc/remoting and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Oct 13 06:50:41 EDT 2009


Author: gaohoward
Date: 2009-10-13 06:50:40 -0400 (Tue, 13 Oct 2009)
New Revision: 7851

Modified:
   branches/Branch_1_4/integration/AS5/etc/remoting/remoting-bisocket-service.xml
   branches/Branch_1_4/integration/AS5/etc/remoting/remoting-sslbisocket-service.xml
   branches/Branch_1_4/integration/EAP4/etc/remoting/remoting-bisocket-service.xml
   branches/Branch_1_4/integration/EAP4/etc/remoting/remoting-sslbisocket-service.xml
Log:
JBM 1.4.6.GA
- remove numberOfRetries as it no longer a remoting param.
- update parameters that not yet in remoting config files for AS 5


Modified: branches/Branch_1_4/integration/AS5/etc/remoting/remoting-bisocket-service.xml
===================================================================
--- branches/Branch_1_4/integration/AS5/etc/remoting/remoting-bisocket-service.xml	2009-10-12 10:13:32 UTC (rev 7850)
+++ branches/Branch_1_4/integration/AS5/etc/remoting/remoting-bisocket-service.xml	2009-10-13 10:50:40 UTC (rev 7851)
@@ -28,11 +28,21 @@
                <attribute name="serverBindPort">${jboss.messaging.connector.bisocket.port:4457}</attribute>
                <attribute name="clientSocketClass" isParam="true">org.jboss.jms.client.remoting.ClientSocketWrapper</attribute>
                <attribute name="serverSocketClass">org.jboss.jms.server.remoting.ServerSocketWrapper</attribute>
-	       
-               <attribute name="numberOfCallRetries" isParam="true">1</attribute>
-               <attribute name="pingFrequency" isParam="true">214748364</attribute>
-               <attribute name="pingWindowFactor" isParam="true">10</attribute>
-               <attribute name="onewayThreadPool">org.jboss.jms.server.remoting.DirectThreadPool</attribute>               
+               <attribute name="onewayThreadPool">org.jboss.jms.server.remoting.DirectThreadPool</attribute>
+
+               <!-- the following parameters are useful when there is a firewall between client and server. Uncomment them if so.-->
+               <!--	       
+               <attribute name="numberOfCallRetries" isParam="true">5</attribute>
+               <attribute name="pingFrequency" isParam="true">30000</attribute>
+               <attribute name="pingWindowFactor" isParam="true">71582</attribute>
+               <attribute name="generalizeSocketException" isParam="true">true</attribute>
+               -->
+
+               <!-- Now remoting supports socket write timeout configuration. Uncomment this if you need it. -->
+               <!--               
+               <attribute name="writeTimeout" isParam="true">30000</attribute>
+               -->
+
                <!-- End immutable parameters -->
                
                <attribute name="stopLeaseOnFailure" isParam="true">true</attribute>
@@ -49,9 +59,6 @@
 	       	       
 	            <attribute name="timeout" isParam="true">0</attribute>
 
-               <!-- Number of seconds to wait for a connection in the client pool to become free -->
-	            <attribute name="connectionWait" isParam="true">10</attribute>
-
                <!-- Max Number of connections in client pool. This should be significantly higher than
                     the max number of sessions/consumers you expect -->
                <attribute name="JBM_clientMaxPoolSize" isParam="true">200</attribute>

Modified: branches/Branch_1_4/integration/AS5/etc/remoting/remoting-sslbisocket-service.xml
===================================================================
--- branches/Branch_1_4/integration/AS5/etc/remoting/remoting-sslbisocket-service.xml	2009-10-12 10:13:32 UTC (rev 7850)
+++ branches/Branch_1_4/integration/AS5/etc/remoting/remoting-sslbisocket-service.xml	2009-10-13 10:50:40 UTC (rev 7851)
@@ -27,10 +27,20 @@
                <attribute name="clientSocketClass" isParam="true">org.jboss.jms.client.remoting.ClientSocketWrapper</attribute>
                <attribute name="serverSocketClass">org.jboss.jms.server.remoting.ServerSocketWrapper</attribute>
                <attribute name="serverSocketFactory">jboss.messaging:service=ServerSocketFactory,type=SSL</attribute>
-               <attribute name="numberOfCallRetries" isParam="true">1</attribute>
-               <attribute name="pingFrequency" isParam="true">214748364</attribute>
-               <attribute name="pingWindowFactor" isParam="true">10</attribute>
                <attribute name="onewayThreadPool">org.jboss.jms.server.remoting.DirectThreadPool</attribute>
+               <!-- the following parameters are useful when there is a firewall between client and server. Uncomment them if so.-->
+               <!--	       
+               <attribute name="numberOfCallRetries" isParam="true">5</attribute>
+               <attribute name="pingFrequency" isParam="true">30000</attribute>
+               <attribute name="pingWindowFactor" isParam="true">71582</attribute>
+               <attribute name="generalizeSocketException" isParam="true">true</attribute>
+               -->
+
+               <!-- Now remoting supports socket write timeout configuration. Uncomment this if you need it. -->
+               <!--               
+               <attribute name="writeTimeout" isParam="true">30000</attribute>
+               -->
+
                <!-- End immutable parameters -->
                
                <attribute name="stopLeaseOnFailure" isParam="true">true</attribute>
@@ -47,8 +57,6 @@
 	       
 	       <attribute name="timeout" isParam="true">0</attribute>
 
-               <!-- Number of seconds to wait for a connection in the client pool to become free -->
-	       <attribute name="connectionWait" isParam="true">10</attribute>
 
                <!-- Max Number of connections in client pool. This should be significantly higher than
                     the max number of sessions/consumers you expect -->

Modified: branches/Branch_1_4/integration/EAP4/etc/remoting/remoting-bisocket-service.xml
===================================================================
--- branches/Branch_1_4/integration/EAP4/etc/remoting/remoting-bisocket-service.xml	2009-10-12 10:13:32 UTC (rev 7850)
+++ branches/Branch_1_4/integration/EAP4/etc/remoting/remoting-bisocket-service.xml	2009-10-13 10:50:40 UTC (rev 7851)
@@ -59,9 +59,6 @@
 	       	       
 	            <attribute name="timeout" isParam="true">0</attribute>
 
-               <!-- Number of seconds to wait for a connection in the client pool to become free -->
-               <attribute name="numberOfRetries" isParam="true">10</attribute>
-
                <!-- Max Number of connections in client pool. This should be significantly higher than
                     the max number of sessions/consumers you expect -->
                <attribute name="JBM_clientMaxPoolSize" isParam="true">200</attribute>

Modified: branches/Branch_1_4/integration/EAP4/etc/remoting/remoting-sslbisocket-service.xml
===================================================================
--- branches/Branch_1_4/integration/EAP4/etc/remoting/remoting-sslbisocket-service.xml	2009-10-12 10:13:32 UTC (rev 7850)
+++ branches/Branch_1_4/integration/EAP4/etc/remoting/remoting-sslbisocket-service.xml	2009-10-13 10:50:40 UTC (rev 7851)
@@ -58,9 +58,6 @@
 	       
 	            <attribute name="timeout" isParam="true">0</attribute>
 
-               <!-- Number of seconds to wait for a connection in the client pool to become free -->
-               <attribute name="numberOfRetries" isParam="true">10</attribute>
-
                <!-- Max Number of connections in client pool. This should be significantly higher than
                     the max number of sessions/consumers you expect -->
                <attribute name="JBM_clientMaxPoolSize" isParam="true">200</attribute> 




More information about the jboss-cvs-commits mailing list