how to save state in a polling processor?

2017-08-22 Thread chris snow
The JDBC component shows the following example for basic change data capture: from("timer://MoveNewCustomersEveryHour?period=360") .setBody(constant("select * from customer where create_time > (sysdate-1/24)")) .to("jdbc:testdb") .to("kafka:mytopic?...) I have an ID column in the

Re: Camel Kafka SASL plain with broker list rather than zookeeper

2017-08-20 Thread Chris Snow
I've raised a JIRA to track this: https://issues.apache.org/jira/browse/CAMEL-11682 -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Kafka-SASL-plain-with-broker-list-rather-than-zookeeper-tp5811191p5811365.html Sent from the Camel - Users mailing list archive at Nabble.

Re: Camel Kafka SASL plain with broker list rather than zookeeper

2017-08-20 Thread Chris Snow
I was wondering whether camel should also support consumer.properties and producer.properties files as a configuration mechanism? This would allow developers to easily reuse their existing assets for connecting to kafka. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-K

Re: Camel Kafka SASL plain with broker list rather than zookeeper

2017-08-20 Thread Chris Snow
Thanks Zoran, from the documentation it appears that I need to pass the parameters: brokers=kafka01-prod01.messagehub.services.eu-de.bluemix.net:9093kafka02-prod01.messagehub.services.eu-de.bluemix.net:9093 ... saslMechanism=PLAIN securityProtocol=SASL_SSL sslProtocol=TLSv1.2 sslEnabledProtocols=T

Camel Kafka SASL plain with broker list rather than zookeeper

2017-08-18 Thread Chris Snow
IBM MessageHub is a kafka 0.10.2.1 service that uses SASL plain to connect. The connection parameters require passing a list of bootstrap servers and a user name and password: "kafka_brokers_sasl": [ "kafka04-prod01.messagehub.services.eu-de.bluemix.net:9093", "kafka05-prod01.messagehub

Re: Camel vs BPEL

2012-09-12 Thread chris snow
> the gurus > > many thanks > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Camel-vs-BPEL-tp5719214.html > Sent from the Camel - Users mailing list archive at Nabble.com. -- Chris Snow - http://uk.linkedin.com/pub/chris-snow-mba-tech-mgmt-cissp/6/0/316

CamelProxy request/reply over jms with long-running transactions

2012-07-03 Thread chris snow
Hi Forum, Is CamelProxy (http://camel.apache.org/using-camelproxy.html) request/reply over jms suitable for long-running transactions? How does CamelProxy set up the handling of the jms response? Does it create a jms listener, or listening thread, or something else? Many thanks, Chris

Re: activiti and camel

2012-06-27 Thread chris snow
he-camel-conference-2012/camelone_speakers_2012/#kwahner > > > > On Tue, Jun 26, 2012 at 2:01 PM, chris snow wrote: > > Hi Forum, > > > > My Company is trying to push Activiti for all orchestration, but I think > > the decision isn't that simple. Both technologies

return a response for spring webservice route

2012-02-21 Thread chris snow
Hi Forum, I am exposing a spring webservice, where incoming requests are put onto a jms queue: ABC I would like to return a constant for the response, but nothing is getting returned. I'm not sure what I'm doing wrong. Any pointers will be appreciated