Camel 2.15.1 Aggregator: Using multiple to() endpoints

2015-06-23 Thread Ravi Nallappan
by commenting out /* 3 */ above (i.e incomplete messages to aggregate), we can see above code will wait awhile for a last message while the other modification does not even wait before failing (aggregator not kicked in at all?). Appreciate if anyone able to explain the reason. And if its still possible to keep "direct://combine" modular i.e combine endpoint's route remain free from before and after routes details. Thanks and regards, Ravi Nallappan

Re: camel-smpp

2015-06-23 Thread Ravi Nallappan
Hi, The error is not clear, can you share the smpp client route that caused this error? regards, Ravi Nallappan On Mon, Jun 15, 2015 at 4:14 PM, AlexNastin wrote: > > Hello. I'm new to CAMEL-SMPP. I'm working on a project that requires smpp > to > send and receive sms fr

Re: Camel 2.15.1 Aggregator: Using multiple to() endpoints

2015-06-24 Thread Ravi Nallappan
Message("Hello, World! 2"); PDUBean rslt1 = template.requestBody(bean1, PDUBean.class); PDUBean rslt2 = template.requestBody(bean2, PDUBean.class); assertEquals("Found 1 0", rslt1.getErrMsg()); assertEquals("Found 2 1", rslt2.getErrMsg()); } Thanks and regards,

Re: Camel 2.15.1 Aggregator: Using multiple to() endpoints

2015-06-24 Thread Ravi Nallappan
bean1, PDUBean.class); PDUBean rslt2 = template.requestBody(bean2, PDUBean.class); assertEquals("Found 1 0", rslt1.getErrMsg()); assertEquals("Found 2 1", rslt2.getErrMsg()); } On Wed, Jun 24, 2015 at 8:27 PM, Ravi Nallappan wrote: > Thanks Claus. > > Ok, I ha

Camel SEDA and JDBC

2015-07-27 Thread Ravi Nallappan
arallel queries should be same as number of concurrentConsumers that I set? Thanks and regards, Ravi Nallappan

Camel features using karaf feature xml

2015-09-14 Thread Ravi Nallappan
I specified it in my feature xml. Thanks and regards, Ravi Nallappan

Starting order for Consumers and Producers

2016-01-11 Thread Ravi Nallappan
test-cases without depending on external servers. Thanks and regards, Ravi Nallappan Following are steps how I observed this behaviour: Generate Camel custom Endpoints === mvn archetype:generate\ -DarchetypeGroupId=org.apache.camel.

CAMEL-8983: Question regarding Camel Simple Random()

2016-01-25 Thread Ravi Nallappan
Hi, Is it possible to make this function work based on content? i.e .setBody(simple("random(${body})")) Thanks and regards, Ravi Nallappan