I thought this was pretty difficult to find a very simple working example. The following works as an example of a polling consumer integration pattern… This will do a GET of the URL listed every 30 seconds, and write the…
Category: Integration
Where does ActiveMQ store subscriber information?
After subscribing, you will see an entry in the ACTIVEMQ_ACKS table… SQL> select container,client_id from esb.activemq_acks; CONTAINER CLIENT_ID —————————————- —————————————- topic://testTopic me topic://testTopic mysubscriber topic://testTopic mysubscriber2 SQL> Once unsubscribe has been run on the subscriber… ConnectionFactory connectionFactory=new ActiveMQConnectionFactory(“admin”, “admin”, “tcp://localhost:61616”);…
Simple camel project with full maven instructions
Generate maven project stub directory… mvn archetype:generate -DgroupId=com.yourcompany.it.arch.poc.esb -DartifactId=esbpoc -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false …then create the single class in our POC… package com.yourcompany.it.arch.poc.esb; import javax.jms.ConnectionFactory; import org.apache.activemq.*; import org.apache.camel.*; import org.apache.camel.builder.*; import org.apache.camel.component.jms.*; import org.apache.camel.impl.*; public final class App { public static…