[jboss-cvs] JBoss Messaging SVN: r6444 - trunk/examples/jms/message-group/server0.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Apr 16 05:34:40 EDT 2009


Author: jmesnil
Date: 2009-04-16 05:34:40 -0400 (Thu, 16 Apr 2009)
New Revision: 6444

Modified:
   trunk/examples/jms/message-group/server0/jbm-configuration.xml
   trunk/examples/jms/message-group/server0/jbm-jms.xml
Log:
updated configuration to comply to JBMESSAGING-1596 changes

Modified: trunk/examples/jms/message-group/server0/jbm-configuration.xml
===================================================================
--- trunk/examples/jms/message-group/server0/jbm-configuration.xml	2009-04-16 09:24:45 UTC (rev 6443)
+++ trunk/examples/jms/message-group/server0/jbm-configuration.xml	2009-04-16 09:34:40 UTC (rev 6444)
@@ -4,20 +4,21 @@
    <configuration>
 
       <!-- Connectors -->
-
-      <connector name="netty-connector">
-         <factory-class>org.jboss.messaging.integration.transports.netty.NettyConnectorFactory</factory-class>
-         <param key="jbm.remoting.netty.port" value="5445" type="Integer"/>
-      </connector>
-
+      <connectors>
+         <connector name="netty-connector">
+            <factory-class>org.jboss.messaging.integration.transports.netty.NettyConnectorFactory</factory-class>
+            <param key="jbm.remoting.netty.port" value="5445" type="Integer"/>
+         </connector>
+      </connectors>
+      
       <!-- Acceptors -->
+      <acceptors>
+         <acceptor name="netty-acceptor">
+            <factory-class>org.jboss.messaging.integration.transports.netty.NettyAcceptorFactory</factory-class>
+            <param key="jbm.remoting.netty.port" value="5445" type="Integer"/>
+         </acceptor>
+      </acceptors>
 
-      <acceptor name="netty-acceptor">
-         <factory-class>org.jboss.messaging.integration.transports.netty.NettyAcceptorFactory</factory-class>
-         <param key="jbm.remoting.netty.port" value="5445" type="Integer"/>
-      </acceptor>
-
-
       <!-- Other config -->
 
       <journal-min-files>2</journal-min-files>

Modified: trunk/examples/jms/message-group/server0/jbm-jms.xml
===================================================================
--- trunk/examples/jms/message-group/server0/jbm-jms.xml	2009-04-16 09:24:45 UTC (rev 6443)
+++ trunk/examples/jms/message-group/server0/jbm-jms.xml	2009-04-16 09:34:40 UTC (rev 6444)
@@ -4,10 +4,12 @@
    <!--the connection factory used by the example-->
    <connection-factory name="ConnectionFactory">
       <connector-ref connector-name="netty-connector"/>
-      <entry name="ConnectionFactory"/>
-      <entry name="XAConnectionFactory"/>
-      <entry name="java:/ConnectionFactory"/>
-      <entry name="java:/XAConnectionFactory"/>
+      <entries>
+         <entry name="ConnectionFactory"/>
+         <entry name="XAConnectionFactory"/>
+         <entry name="java:/ConnectionFactory"/>
+         <entry name="java:/XAConnectionFactory"/>
+      </entries>
    </connection-factory>
 
    <!--the queue used by the example-->




More information about the jboss-cvs-commits mailing list