Re: A lot of spam

2017-08-22 Thread Roman Vottner
So what to use instead? Github issues? Stackoverflow posts? Shouldn’t this be communicated to users and eventually also lead to a shutdown of Camel’s nabble mailing list? > Am 21.08.2017 um 23:51 schrieb Claus Ibsen : > > Yes we have given up on nabble - do not use it. > > On Mon, Aug 21, 201

Fwd: problem in aggregator followed by split

2017-08-22 Thread Giuliano Santandrea
Hello, I've experienced a strange behavior in a camel route: if I removed a logging instruction my Camel route broke. After making some tests I realized that the problem was in the behaviour of the aggregator and the splitter and I'd like you to clear some doubts about the pipeline mechanism. I tri

[NOT WORD-WRAPPED] problem in aggregator followed by split

2017-08-22 Thread Giuliano Santandrea
Hello, I've experienced a strange behavior in a camel route: if I removed a logging instruction my Camel route broke. After making some tests I realized that the problem was in the behaviour of the aggregator and the splitter and I'd like you to clear some doubts about the pipeline mechanism. I t

Re: A lot of spam

2017-08-22 Thread Achim Nierbeck
actually the mailinglists are maintained by Apache, and nabble is only a gimmick on top of mailinglists. If you have issues, file those in the Jira of Apache. If you don't want to join a certain mailinglist use https://lists.apache.org/ to follow that mailinglist. regards, Achim 2017-08-22 10:37

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: A lot of spam

2017-08-22 Thread souciance
Github issues or stackoverflow would be nice as the options to write comments and do other things are vastly better but yeah as a humble user it is a bit annoying to receive so much spam from nabble.. On Tue, Aug 22, 2017 at 10:37 AM, Roman Vottner [via Camel] < ml+s465427n5811757...@n5.nabble.com

Re: A lot of spam

2017-08-22 Thread Babak Vahdat
> On 22 Aug 2017, at 16:35, souciance wrote: > > Github issues or stackoverflow would be nice as the options to write > comments and do other things are vastly better but yeah as a humble user it > is a bit annoying to receive so much spam from nabble.. > Hi See http://camel.apache.org/2017/

Re: JBoss/HornetQ JMS JNDI Spring config - getting connectionFactory must be specified error

2017-08-22 Thread Francis Carlo Gavino
[RESOLVED] I used this config: Also, it seemed that I was testing it the wrong way (beans were not being loaded in my test). I confirmed this by just sending a message to the queue using HermesJMS. Thank you all for reading. Francis >>> "Francis Carlo Gavino" 8/21/201

Re: A lot of spam

2017-08-22 Thread Francis Carlo Gavino
Is Gitter now the recommended channel (vs. the mailing list)? Is the community more active in Gitter? How about cross-posting, is that allowed? Thanks. Francis >>> Babak Vahdat 8/22/2017 9:45 AM >>> > On 22 Aug 2017, at 16:35, souciance wrote: > > Github issues or stackoverflow would be ni

Camel Route Not Starting in Docker

2017-08-22 Thread Jeremy Deane
If start a local Spring-Boot App with a Camel Route listening to ActiveMQ, itself either local or from a Docker Container, then the Camel Route starts. That in turns creates a connection to ActiveMQ and the queue that the Route is polling. However, if I start that same Spring-Boot App (w/ Camel Ro

restlest service deployment to karaf

2017-08-22 Thread Matthew Shaw
This maybe a stupid question, but I'm using camel to expose rest endpoints from my bundle, into karaf. How do I deploy multiple services to the same host and port with restlet? Here is my dsl restConfiguration().component("restlet").host("localhost").port(8095).bindingMode(RestBindingMode.json);

Re: restlest service deployment to karaf

2017-08-22 Thread Claus Ibsen
Use servlet instead of restlet if you want to reuse ports in karaf, as you then use its servlet engine. On Wed, Aug 23, 2017 at 7:03 AM, Matthew Shaw wrote: > This maybe a stupid question, but I'm using camel to expose rest endpoints > from my bundle, into karaf. How do I deploy multiple service

Re: how to save state in a polling processor?

2017-08-22 Thread Claus Ibsen
Hi You can use a plain java bean which you can then use from your Camel route to get/update the state. Or use one of the camel cache components (likely overkill in your use-case) On Tue, Aug 22, 2017 at 4:16 PM, chris snow wrote: > The JDBC component shows the following example for basic change

Re: A lot of spam

2017-08-22 Thread Claus Ibsen
There is the mailing list which is the primary way for communication - it has been from the beginning and still is today. Then there are alternatives like gitter for chat, and stackoverflow. As others have said nabble was "just" a facade on top of the mailing list, but it has turned really bad th

Re: Groovy DSL - expression closures

2017-08-22 Thread Claus Ibsen
Hi The groovy DSL is deprecated and its not recommended to be used. We have also deprecated Scala DSL as well. Sorry but there is only as few we can maintain which is Java and XML. On Tue, Aug 15, 2017 at 2:26 PM, Remco Schoen wrote: > Hi, > > I’m trying to get processor closures to work as d

RE: restlest service deployment to karaf

2017-08-22 Thread Matthew Shaw
Thanks Claus. -Original Message- From: Claus Ibsen [mailto:claus.ib...@gmail.com] Sent: Wednesday, 23 August 2017 3:09 PM To: users@camel.apache.org Subject: Re: restlest service deployment to karaf Use servlet instead of restlet if you want to reuse ports in karaf, as you then use its