You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2006/04/09 04:05:32 UTC

svn commit: r392659 - /incubator/servicemix/trunk/servicemix-assembly/src/main/release/examples/quartz-binding/servicemix.xml

Author: gnodet
Date: Sat Apr  8 19:05:30 2006
New Revision: 392659

URL: http://svn.apache.org/viewcvs?rev=392659&view=rev
Log:
Change component order to avoid the quartz component sending a message when the trace component is not yet activated

Modified:
    incubator/servicemix/trunk/servicemix-assembly/src/main/release/examples/quartz-binding/servicemix.xml

Modified: incubator/servicemix/trunk/servicemix-assembly/src/main/release/examples/quartz-binding/servicemix.xml
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-assembly/src/main/release/examples/quartz-binding/servicemix.xml?rev=392659&r1=392658&r2=392659&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-assembly/src/main/release/examples/quartz-binding/servicemix.xml (original)
+++ incubator/servicemix/trunk/servicemix-assembly/src/main/release/examples/quartz-binding/servicemix.xml Sat Apr  8 19:05:30 2006
@@ -8,6 +8,13 @@
 
 		<sm:activationSpecs>
 
+			<!-- Route the event to a trace component that just outputs the event to the console -->
+			<sm:activationSpec componentName="trace" service="my:trace">
+				<sm:component>
+					<bean class="org.apache.servicemix.components.util.TraceComponent" />
+				</sm:component>
+			</sm:activationSpec>
+
 			<!-- lets kick off a timer  every 5 seconds -->
 			<sm:activationSpec componentName="timer" service="my:timer"
 				destinationService="my:trace">
@@ -31,14 +38,6 @@
 							</map>
 						</property>
 					</bean>
-				</sm:component>
-			</sm:activationSpec>
-
-
-			<!-- Route the event to a trace component that just outputs the event to the console -->
-			<sm:activationSpec componentName="trace" service="my:trace">
-				<sm:component>
-					<bean class="org.apache.servicemix.components.util.TraceComponent" />
 				</sm:component>
 			</sm:activationSpec>