Hi, I would like to accomplish a scenario:
Activemq receives XML from its stomp interface. This XML will be processed by POJO to an Event object, then activemq will go to database to fetch the list of topic name and send the xml to each of the topics. <route> <from uri="activemq:topic:AgentLogin"/> <to uri="ibatis:selectTopicName"/> <to uri="activemq:topic:#TopicName"/> </route> The part I don't understand is how to have camel to go through each of the result in the selectTopicName resultset and send message to the topic. Could someone please give me some hint or help how that can be done? Thanks alot in advance for all your help. Woody