You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2008/11/22 15:23:42 UTC

svn commit: r719855 - in /activemq/camel/trunk: examples/camel-example-spring-jms/src/main/resources/META-INF/spring/ tests/camel-itest/src/test/resources/ tests/camel-itest/src/test/resources/spring-config/

Author: davsclaus
Date: Sat Nov 22 06:23:42 2008
New Revision: 719855

URL: http://svn.apache.org/viewvc?rev=719855&view=rev
Log:
CAMEL-1109, CAMEL-1120: Upgrade to ActiveMQ and fixed setting acknowledgementMode on inout mep for JMSProducer when transactedInOut is false (phew this issue surfaced in ActiveMQ 5.2.0)

Modified:
    activemq/camel/trunk/examples/camel-example-spring-jms/src/main/resources/META-INF/spring/camel-server.xml
    activemq/camel/trunk/tests/camel-itest/src/test/resources/activemq.xml
    activemq/camel/trunk/tests/camel-itest/src/test/resources/spring-config/server-WsAddressingContext.xml
    activemq/camel/trunk/tests/camel-itest/src/test/resources/spring-config/server-applicationContext.xml

Modified: activemq/camel/trunk/examples/camel-example-spring-jms/src/main/resources/META-INF/spring/camel-server.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/examples/camel-example-spring-jms/src/main/resources/META-INF/spring/camel-server.xml?rev=719855&r1=719854&r2=719855&view=diff
==============================================================================
--- activemq/camel/trunk/examples/camel-example-spring-jms/src/main/resources/META-INF/spring/camel-server.xml (original)
+++ activemq/camel/trunk/examples/camel-example-spring-jms/src/main/resources/META-INF/spring/camel-server.xml Sat Nov 22 06:23:42 2008
@@ -26,7 +26,7 @@
         http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
         http://activemq.apache.org/camel/schema/spring http://activemq.apache.org/camel/schema/spring/camel-spring.xsd
-        http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core-5.1.0.xsd">
+        http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core-5.2.0.xsd">
 <!-- END SNIPPET: e1 -->
 
     <!-- START SNIPPET: e2 -->

Modified: activemq/camel/trunk/tests/camel-itest/src/test/resources/activemq.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/tests/camel-itest/src/test/resources/activemq.xml?rev=719855&r1=719854&r2=719855&view=diff
==============================================================================
--- activemq/camel/trunk/tests/camel-itest/src/test/resources/activemq.xml (original)
+++ activemq/camel/trunk/tests/camel-itest/src/test/resources/activemq.xml Sat Nov 22 06:23:42 2008
@@ -20,7 +20,7 @@
   xmlns:broker="http://activemq.apache.org/schema/core"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
-  http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core-5.1.0.xsd">
+  http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core-5.2.0.xsd">
 
    <broker:broker id="broker" useJmx="false" persistent="false" dataDirectory="target/activemq">
     <broker:transportConnectors>

Modified: activemq/camel/trunk/tests/camel-itest/src/test/resources/spring-config/server-WsAddressingContext.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/tests/camel-itest/src/test/resources/spring-config/server-WsAddressingContext.xml?rev=719855&r1=719854&r2=719855&view=diff
==============================================================================
--- activemq/camel/trunk/tests/camel-itest/src/test/resources/spring-config/server-WsAddressingContext.xml (original)
+++ activemq/camel/trunk/tests/camel-itest/src/test/resources/spring-config/server-WsAddressingContext.xml Sat Nov 22 06:23:42 2008
@@ -5,8 +5,8 @@
 		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
 		http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
 		http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
-		http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core-5.1.0.xsd
-		http://activemq.apache.org/camel/schema/spring http://activemq.apache.org/camel/schema/spring/camel-spring-1.3.0.xsd
+		http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core-5.2.0.xsd
+		http://activemq.apache.org/camel/schema/spring http://activemq.apache.org/camel/schema/spring/camel-spring.xsd
 		http://cxf.apache.org/transports/camel http://cxf.apache.org/transports/camel.xsd">
 
 	<import resource="classpath:META-INF/cxf/cxf.xml" />

Modified: activemq/camel/trunk/tests/camel-itest/src/test/resources/spring-config/server-applicationContext.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/tests/camel-itest/src/test/resources/spring-config/server-applicationContext.xml?rev=719855&r1=719854&r2=719855&view=diff
==============================================================================
--- activemq/camel/trunk/tests/camel-itest/src/test/resources/spring-config/server-applicationContext.xml (original)
+++ activemq/camel/trunk/tests/camel-itest/src/test/resources/spring-config/server-applicationContext.xml Sat Nov 22 06:23:42 2008
@@ -21,7 +21,7 @@
 		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
 		http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
 		http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
-		http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core-5.1.0.xsd
+		http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core-5.2.0.xsd
 		http://activemq.apache.org/camel/schema/spring http://activemq.apache.org/camel/schema/spring/camel-spring.xsd
 		http://cxf.apache.org/transports/camel http://cxf.apache.org/transports/camel.xsd">