[jboss-svn-commits] JBL Code SVN: r8521 - labs/jbossesb/trunk/product/samples/quickstarts/helloworld

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Dec 21 14:17:34 EST 2006


Author: estebanschifman
Date: 2006-12-21 14:17:32 -0500 (Thu, 21 Dec 2006)
New Revision: 8521

Modified:
   labs/jbossesb/trunk/product/samples/quickstarts/helloworld/jbossesb.xml
Log:
Some changes to make the ConfigurationController do what we want

Modified: labs/jbossesb/trunk/product/samples/quickstarts/helloworld/jbossesb.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/helloworld/jbossesb.xml	2006-12-21 19:17:16 UTC (rev 8520)
+++ labs/jbossesb/trunk/product/samples/quickstarts/helloworld/jbossesb.xml	2006-12-21 19:17:32 UTC (rev 8521)
@@ -9,14 +9,14 @@
               <jms-bus busid="quickstartGwChannel">
                   <jms-message-filter
                       dest-type="QUEUE"
-                      dest-name="queue/quickstart"
+                      dest-name="queue/A"
                       selector="type='toGateway'"
                   />
               </jms-bus>
               <jms-bus busid="quickstartEsbChannel">
                   <jms-message-filter
                       dest-type="QUEUE"
-                      dest-name="queue/quickstart"
+                      dest-name="queue/A"
                       selector="type='toEsb'"
                   />
               </jms-bus>
@@ -25,26 +25,38 @@
       </providers>
       
       <services>
-          <service category="FirstServicesGW" name="SimpleJMSGateway" description="Hello World(gateway)" is-gateway="true">
+          <service 
+          		category="FirstServicesGW" 
+          		name="SimpleJMSGateway" 
+          		description="Hello World(gateway)" 
+          		is-gateway="true"
+                target-service-category="FirstServiceESB"
+                target-service-name="SimpleListener"
+          		>
               <listeners>        
                   <jms-listener name="JMS-Gateway"
                               busidref="quickstartGwChannel"
-                              target-service-category="FirstServiceESB"
-                              target-service-name="SimpleListener"
                               maxThreads="1"
                   />
               </listeners>    
           </service>
           
-        <service category="FirstServiceESB" name="SimpleListener" description="Hello World" is-gateway="false">
+        <service 
+        	category="FirstServiceESB" 
+        	name="SimpleListener" 
+        	description="Hello World" 
+        	is-gateway="false">
             <listeners>
-                <listener name="hello world"
+                <jms-listener name="helloWorld"
                               busidref="quickstartEsbChannel"
                               maxThreads="1"
                 />
             </listeners>
             <actions>
-                   <action class="quickstart.helloworld.MyJMSListenerAction" process="displayMessage" />      
+                   <action name="action1" 
+                   	class="quickstart.helloworld.MyJMSListenerAction" 
+                   	process="displayMessage" 
+                   	/>      
             </actions>
         </service>
       </services>




More information about the jboss-svn-commits mailing list