[jboss-cvs] JBoss Messaging SVN: r3237 - in trunk/src: main/org/jboss/jms/server/connectionfactory and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Oct 21 11:27:51 EDT 2007


Author: timfox
Date: 2007-10-21 11:27:51 -0400 (Sun, 21 Oct 2007)
New Revision: 3237

Modified:
   trunk/src/etc/remoting/remoting-bisocket-service.xml
   trunk/src/main/org/jboss/jms/server/connectionfactory/ConnectionFactory.java
Log:
Fix secure socket example


Modified: trunk/src/etc/remoting/remoting-bisocket-service.xml
===================================================================
--- trunk/src/etc/remoting/remoting-bisocket-service.xml	2007-10-21 14:10:18 UTC (rev 3236)
+++ trunk/src/etc/remoting/remoting-bisocket-service.xml	2007-10-21 15:27:51 UTC (rev 3237)
@@ -28,7 +28,7 @@
                <attribute name="serverBindAddress">${jboss.bind.address}</attribute>
                <attribute name="serverBindPort">4457</attribute>
                <attribute name="clientSocketClass" isParam="true">org.jboss.jms.client.remoting.ClientSocketWrapper</attribute>
-               <attribute name="serverSocketClass" isParam="true">org.jboss.jms.server.remoting.ServerSocketWrapper</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>

Modified: trunk/src/main/org/jboss/jms/server/connectionfactory/ConnectionFactory.java
===================================================================
--- trunk/src/main/org/jboss/jms/server/connectionfactory/ConnectionFactory.java	2007-10-21 14:10:18 UTC (rev 3236)
+++ trunk/src/main/org/jboss/jms/server/connectionfactory/ConnectionFactory.java	2007-10-21 15:27:51 UTC (rev 3237)
@@ -146,7 +146,6 @@
 		         checkParam(params, "dataType", "jms") &&
 		         checkParam(params, "timeout", "0") &&
 		         checkParam(params, "clientSocketClass", "org.jboss.jms.client.remoting.ClientSocketWrapper") &&
-		         checkParam(params, "serverSocketClass", "org.jboss.jms.server.remoting.ServerSocketWrapper") &&
 		         checkParam(params, "numberOfCallRetries", "1") &&
 		         checkParam(params, "pingFrequency", "214748364") &&
 		         checkParam(params, "pingWindowFactor", "10");




More information about the jboss-cvs-commits mailing list