Re: AW: [Feature Enhancement] Camel body size

2013-11-23 Thread Hadrian Zbarcea
So that's one way of doing it. I assume you'd want that customized to include headers or not, right? Now how's that different than having an expression (actually any number of specialized expressions), returning the size calculated using your algorithm of choice. Set your header of choice with

Issue with jsch component (Camel 2.12.1)

2013-11-23 Thread tops
Hi All! I face with the issue while using jcsh component in Camel 2.12.1. I'm trying to do file transferring and I got a message depicted in the log entry like bellow: *2013/11/23 16:15:23 [main][DEBUG] Creation of temporary files not supported by the scp: protocol. - (ScpEndpoint.java:66)* 2013

AW: [Feature Enhancement] Camel body size

2013-11-23 Thread jhm
Store the object in a byte array and count the bytes? Jan > -Ursprüngliche Nachricht- > Von: Hadrian Zbarcea [mailto:hzbar...@gmail.com] > Gesendet: Samstag, 23. November 2013 20:00 > An: users@camel.apache.org > Betreff: Re: [Feature Enhancement] Camel body size > > I wonder how you'd i

Re: [Feature Enhancement] Camel body size

2013-11-23 Thread Hadrian Zbarcea
I wonder how you'd implement that in the general case. A pojo, array of pojos, do you include the size of the headers, are headers pojos, arrays of pojos... What about properties... Hadrian On 11/22/2013 03:57 PM, Matt Pavlovich wrote: Hello- I opened a ticket to request adding a feature fo

Re: ProducerCache/LRUCache Memory leak ?

2013-11-23 Thread Hamid
Hi, Any idea Please. It's vers important. Our composent is not more robuste and not usable. Please help. On Friday, November 22, 2013, Hamid wrote: > Hi, > I set the MAXIMUM_CACHE_POOL_SIZE to 50. > I tested my Camel component with the new configuration. Unfortunately I > still have the same pro

Re: Producer template error handling

2013-11-23 Thread kiranreddykasa
Hi Ya I was asking about timeout. Thanks - Regards kiran Reddy -- View this message in context: http://camel.465427.n5.nabble.com/Producer-template-error-handling-tp5743684p5743735.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Reading more files from aws-S3 than expected

2013-11-23 Thread Bilgin Ibryam
Have you tried to specify the prefix option? HTH, On Fri, Nov 22, 2013 at 12:49 PM, Jesper Olsen wrote: > Hi > > I have a camel route in Spring XML, that reads files from aws-s3. > > Before starting the route, I placed a test file in S3: > //drbucket/CamelPickupTest/Test1.XML > > The route loo

AW: [Feature Enhancement] Camel body size

2013-11-23 Thread jhm
When only asking the body for its length you lose the length of properties, headers and attachements. (Especially when retrieving emails the last could be big ;) Jan > -Ursprüngliche Nachricht- > Von: Jean-Baptiste Onofré [mailto:j...@nanthrax.net] > Gesendet: Samstag, 23. November 2013 1

Re: OSGI camel-avro:2.12.1 AvroDataFormat:loadDefaultSchema

2013-11-23 Thread Claus Ibsen
Hi Yeah this sounds like a issue in OSGi land. I have logged a ticket https://issues.apache.org/jira/browse/CAMEL-7001 On Fri, Nov 22, 2013 at 4:15 PM, mabels wrote: > Hey, > > we use camel-avro on osgi-karaf. We use the OsgiDefaultContext and in a > marshal(routentry) we get during runtime the

Re: [Feature Enhancement] Camel body size

2013-11-23 Thread Jean-Baptiste Onofré
Hi Matt, What do you think about something like ${body.size} or ${body.length} ? Regards JB On 11/22/2013 09:57 PM, Matt Pavlovich wrote: Hello- I opened a ticket to request adding a feature for components to provide a Body size to the Exchange that could be used by Simple, or set as a heade

Re: Producer template error handling

2013-11-23 Thread Claus Ibsen
When you use producer template with InOut (eg requestBody) then the template will wait for a reply message to come back from the "other end". And are you asking how to handle if that response does not come back in time, and a timeout was triggered due requestTimeout? The producer template is just

[Feature Enhancement] Camel body size

2013-11-23 Thread Matt Pavlovich
Hello- I opened a ticket to request adding a feature for components to provide a Body size to the Exchange that could be used by Simple, or set as a header. https://issues.apache.org/jira/browse/CAMEL-6984 I see it solving a couple things: 1. Provide throughput metrics 2. Route based on messag

Rabbitmq queueingconsumer

2013-11-23 Thread Matteo
Hi all,I am newbie, and I don't know if anyone has already done the following question:is it possibile to have an implementation of Rabbitmq consumer which uses QueueingConsumer?I have experienced, out of camel, both default and queueing consumer, and the latter seems to be faster then former.Thank