Try change activemq.url in servicemix.properties:
tcp://${activemq.host}:${activemq.port}/?jms.useAsyncSend=trueSMX use this to create JMS and JCA flow. I guess it should works. :) Regards, Luke splatch wrote: > > For endpoint you can configure connection factory using spring beans: > <jms:consumer service="...." endpoint="endpoint" > .... > connectionFactory="#connectionFactory" > /> > > <bean id="connectionFactory" > class="org.apache.activemq.ActiveMQConnectionFactory"> > <property name="brokerURL" > value="tcp://locahost:61616?jms.useAsyncSend=true" /> > </bean> > > But I really don't know how to configure ServiceMix instance to use this. > > Regards, > Luke > > > pvn wrote: >> >> Hi >> >> How can I configure servicemix to use activemq in the async mode? >> >> from here this is not clear >> http://activemq.apache.org/async-sends.html >> >> thanks, >> Vladimir. >> > > -- View this message in context: http://www.nabble.com/Configure-ActiveMQ-for-async-exchange-tp19549683p19550350.html Sent from the ServiceMix - User mailing list archive at Nabble.com.
