Camel logging

2016-06-15 Thread mabahma
Hello I'm using a route where i send à get request to a url GET https://localhost:9091/clients"; /> I'm wondering of it's possible to have logs like in tomcat or apache logs : 2016-06-14 13:15:03,045: INFO -Request sent: GET https://localhost:909

camel salesforce component support for lookup field

2016-06-15 Thread ssatguru
A SalesForce object can have a field of type called "lookup". This field is used to by a record in a SalesForce object to reference a record in another SalesForce object. The value of this field could be a string in which case it would be the record id of the other record or it could be an object i

Re: RuntimeCamelException:IllegalStateException:Unablefind BeanManager.Please ensure config CDI

2016-06-15 Thread saysvishal
Thanks astefanutti, appreciate you help! We are not using BeanManagerProvider but javax.enterprise.inject.spi.BeanManager. But I looked at 2.17 camel patch and its fixes. Its targeted for many CDI BeanManager Component loading issues which covers one this issue. https://issues.apache.org/jira/brow

RE: FileFilter to error queue

2016-06-15 Thread redpower1989
So basically you suggest to use a custom bean to act like a filter ? Can this act like a filter uri consumer? -- View this message in context: http://camel.465427.n5.nabble.com/FileFilter-to-error-queue-tp5784091p5784093.html Sent from the Camel - Users mailing list archive at Nabble.com.

RE: FileFilter to error queue

2016-06-15 Thread Hans Orbaan
Hi, You could not filter and then use a bean to throw an exception if they need to move to failed. -Oorspronkelijk bericht- Van: redpower1989 [mailto:redpower1...@hotmail.com] Verzonden: Wednesday 15 June 2016 16:02 Aan: users@camel.apache.org Onderwerp: FileFilter to error queue Hello

FileFilter to error queue

2016-06-15 Thread redpower1989
Hello According to http://camel.apache.org/file2 I can use GenericFileFilter to either accept file with some conditions when filter returns true or false reject them? Is there any way to move those files to error queue? Thanks -- View this message in contex

Re: Log message body with EventNotifierSupport

2016-06-15 Thread redpower1989
Thanks that class really helps with logging -- View this message in context: http://camel.465427.n5.nabble.com/Log-message-body-with-EventNotifierSupport-tp5783910p5784090.html Sent from the Camel - Users mailing list archive at Nabble.com.

Camel ActiveMQ error on long processing

2016-06-15 Thread L F
Hello all, I have a camel route (route1) which has as entry point a cxf webservice. The camel route (route1) calls an another route (route2), which has a long processing step (let's call it delay - which takes more than 30s). 1. route1 -> seda->route2  (delay 40s)   -    works as expected, and

Camel Bindy - marshal fixed file with heade,footer and section

2016-06-15 Thread Scisci
Hi, I've a problem to create a file with header, footer and sections with header, sub_header and contents ex: F994CMPU03817.33.382016061480---> HEADER P_AR_O --> HEADER SECTION Titoli_Bloccati_Fondo_GABSORET --> SUB_HEADER SECTION -->CONTENT

Re: RuntimeCamelException:IllegalStateException:Unablefind BeanManager.Please ensure config CDI

2016-06-15 Thread Antonin Stefanutti
It may be due to the use of DeltaSpike’s BeanManagerProvider in the Camel CDI extension which can cause such an issue. It’s been fixed in Camel version 2.17.0. Would that be possible for you to upgrade your Camel dependencies and check if that fixes your issue? > On 14 Jun 2016, at 22:51, saysv