Author: ningjiang
Date: Tue Sep 25 02:52:03 2012
New Revision: 1389691

URL: http://svn.apache.org/viewvc?rev=1389691&view=rev
Log:
CXF-4506 update the activemq connector configuration on the wsn-core

Modified:
    
cxf/trunk/services/wsn/wsn-core/src/main/resources/OSGI-INF/blueprint/cxf-wsn.xml

Modified: 
cxf/trunk/services/wsn/wsn-core/src/main/resources/OSGI-INF/blueprint/cxf-wsn.xml
URL: 
http://svn.apache.org/viewvc/cxf/trunk/services/wsn/wsn-core/src/main/resources/OSGI-INF/blueprint/cxf-wsn.xml?rev=1389691&r1=1389690&r2=1389691&view=diff
==============================================================================
--- 
cxf/trunk/services/wsn/wsn-core/src/main/resources/OSGI-INF/blueprint/cxf-wsn.xml
 (original)
+++ 
cxf/trunk/services/wsn/wsn-core/src/main/resources/OSGI-INF/blueprint/cxf-wsn.xml
 Tue Sep 25 02:52:03 2012
@@ -26,12 +26,16 @@
             <cm:property name="cxf.wsn.activemq" value="vm:localhost"/>
             <cm:property name="cxf.wsn.rootUrl" value="http://0.0.0.0:8182"; />
             <cm:property name="cxf.wsn.context" value="/wsn" />
+            <cm:property name="cxf.wsn.activemq.username" value="user" />
+            <cm:property name="cxf.wsn.activemq.password" value="password" />
         </cm:default-properties>
     </cm:property-placeholder>
 
     <!-- ActiveMQ connection factory -->
     <bean id="activemq" class="org.apache.activemq.ActiveMQConnectionFactory">
-        <argument value="${cxf.wsn.activemq}" />
+        <property name="brokerURL" value="${cxf.wsn.activemq}" />
+        <property name="userName" value="${cxf.wsn.activemq.username}" />
+        <property name="password" value="${cxf.wsn.activemq.password}" />
     </bean>
     
     <bean id="JaxwsEndpointManager" 


Reply via email to