Problem Statement:
--------------------
Need to create dynamic topics in Websphere MQ according to the parameter
CustomerName and Date. Thats is like 

from("direct:source").recipientList(simple("websphere:topic:mytopics.dynamic.${header.customername}.${date}"));

And read all the messages from the topics which have the topic name like
"mytopics.dynamic.*". 

from("websphere:topic:mytopics.dynamic.*").to("direct:processing");

----------------------------------------------------------------------------------------------------

from("*websphere:topic:mytopics.dynamic.**").to("direct:processing");

Here the creation part is working fine but when I try to read the topics
with a regex of asterisk (*), It does not read any of the messages. If I
hard code with the customername and date it works fine and I can get the
message in the direct:processing route.

Is there any way to pull out the Topics which have a starts with like
subscription?








--
View this message in context: 
http://camel.465427.n5.nabble.com/JMS-Topic-End-Point-does-not-works-with-regex-type-configuration-tp5756857.html
Sent from the Camel Development mailing list archive at Nabble.com.

Reply via email to