Hi Stuart,
the new JMS endpoint uses JMS support from the Spring framework. Most of
the new endpoint properties is documented here:
http://static.springframework.org/spring/docs/2.0.x/reference/jms.html
http://static.springframework.org/spring/docs/2.0.x/api/org/springframework/jms/listener/package-summary.html
For a topic, you can use the pubSubDomain attributes.
pubSubDomain (boolean) specifies if the destination is a topic (true).
Regards
JB
Stuart Roe wrote:
Hi,
I'm using the new servicemix-jms Endpoints to configure a provider into a
topic. I've looked at the appropriate xsd and can only find the
destinationStyle property within the old <jms:endpoint ... />. Is it
possible to configure topics with the new endpoints?
My current configuration is shown below and I'm using SMX3.3 with version
2008.01 of servicemix-jms.
<jms:provider service="jmsconf:scanner-config-change"
endpoint="jms"
deliveryMode="2"
timeToLive="5000"
destinationName="config.update"
connectionFactory="#connectionFactory" />
Stuart.