camel netty timeout handler

2012-11-22 Thread kiranreddykasa
Hi , I couldn't find 'timeout' option in the camel-netty component but it's available in camel-mina component .Has it been removed from netty?? I cant't use mina component as it won't support asynchronous model, can anyone suggest me how to implement timeout handler in netty component?? -

Re: camel in OSGi: custom component resolved or listen to

2012-11-22 Thread Babel
Hello Christian Of course, I did. If I was not clear enough, I would explain what I'm worrying about: Camel resolves components by resolving OSGi specific service. I suppose this service is only resolved and not actively listen to and would like to know why. Thanks for your answer, I'll try to u

Re: CastException error when using choice in a route

2012-11-22 Thread Claus Ibsen
Hi See this FAQ http://camel.apache.org/why-can-i-not-use-when-or-otherwise-in-a-java-camel-route.html On Thu, Nov 22, 2012 at 8:17 PM, Florian B. wrote: > Hi I'm trying to setup some routes to handle an import from different csv > files to a database. First I defined a single route for each fil

Re: Do Apache Camel needs a SAP integration?

2012-11-22 Thread sekaijin
Hi, I've me to writed a camel-sap component based on JCO 3 it use xml based data to send and recive RFC SAP IDOCS the consumer fix some headers from EDI_DC40 segment like idoc_type The messageId is fixed with the idoc number A+JYT -- View this message in context: http://camel.465427.n5.nabbl

Re: [camel-mina2] Bug in default UDP codec (Mina2UdpProtocolCodecFactory)?

2012-11-22 Thread Mikael Fernandus Simalango
Here I provide a sample test case to reproduce the surprising behavior. public class Mina2UdpTest extends CamelTestSupport { private static volatile int port; private static volatile String longMessage = "A very long UTF-8 string with length more than 2048 bytes"; @BeforeClass pub

Custom Completion Predicate for Resequencer

2012-11-22 Thread gsheppard
Hi, I've got a requirement to re-sequence messages coming into a route. Unfortunately I can use neither the batch nor stream mechanism to determine when to complete the re-sequence operation as my 'completion' requirements are more complicated than this. Needless to say I need the ability to suppl

Re: Camel Monitoring Tool

2012-11-22 Thread Bilgin Ibryam
I've also blogged recently about monitoring Camel applications with JMX and Amazon CloudWatch: http://www.ofbizian.com/2012/11/monitoring-camel-applications-on-cloud.html Cheers Bilgin On 22/11/2012, Preben.Asmussen wrote: > I developed a custom monitoring solution where that uses route jmx sta

CastException error when using choice in a route

2012-11-22 Thread Florian B.
Hi I'm trying to setup some routes to handle an import from different csv files to a database. First I defined a single route for each file but I thought it should be easier and be more flexible when I try to split everything up to have some routes which can be used for different files. Here are

Re: Camel Monitoring Tool

2012-11-22 Thread Preben.Asmussen
I developed a custom monitoring solution where that uses route jmx stats. to report the health of a route by looking af completed and failed exchanges. The solution is generalized, so that you can configure which routes should be monitored by route name. Route stats. are not always enough though

Re: Camel netty response handler

2012-11-22 Thread Claus Ibsen
On Thu, Nov 22, 2012 at 11:20 AM, kiranreddykasa wrote: > Hi > > i am trying to create a tcp sample with camel and started using camel-netty > and it works great > > but i am not able to figure out how to handle responses . > > consider the following route > > client ---> > from(netty:tcp://local

Camel netty response handler

2012-11-22 Thread kiranreddykasa
Hi i am trying to create a tcp sample with camel and started using camel-netty and it works great but i am not able to figure out how to handle responses . consider the following route client ---> from(netty:tcp://localhost:9[?options]).process(someprocessor)to(netty:tcp://remotehost: