Hi, Is it possible to create a service unit for the servicemix-jms component that can act as a durable subscriber? I am currently using an xbean.xml(see below), and I don't see any way to stipulate durability.
Any help would be greatly appreciated. We are currently evaluating the possibility of using ServiceMix to integrate a large number of products, but I am having problems performing tasks that most would consider quite basic. <beans xmlns:jms="http://servicemix.apache.org/jms/1.0" xmlns:sub="http://www.compuware.com/subscriber/1.0"> <jms:endpoint service="sub:jms-cos-output-durable-consumer1" endpoint="endpoint" targetInterfaceName="sub:durable-subscriber1" role="consumer" destinationStyle="topic" jmsProviderDestinationName="sample.output" connectionFactory="#jmsFactory" defaultMep="http://www.w3.org/2004/08/wsdl/in-only" /> <bean id="jmsFactory" class="org.apache.activemq.pool.PooledConnectionFactory"> <property name="connectionFactory"> <bean class="org.apache.activemq.ActiveMQConnectionFactory"> <property name="brokerURL" value="tcp://localhost:61616" /> </bean> </property> </bean> </beans> Thanks In Advance, Carlos
