Can't get things on Oracle DB backout queue

2016-06-21 Thread Sverre Nyheim
Greetings! My problem is probably pretty Oracle-spesiffic. My application reads form queues in an Oracle DB. When my app reads from a queue an processing fails I would like the read message to be put back onto the queue in a failed state. For some reason I cannot make Camel do this. Some collea

Re: Camel AWS s3 Connection Pool Timeout Exception

2016-06-21 Thread Akram
We are using the below route to pull the data from s3 from("aws-s3://bucketName?amazonS3Client=#awss3Client&deleteAfterRead=false®ion=us-east-1&prefix=folder1/folder").to("stream:out") -- View this message in context: http://camel.465427.n5.nabble.com/Camel-AWS-s3-Connection-Pool-Timeout-Excep

Re: SOAP Envelope and headers are not added by CXF by default

2016-06-21 Thread Aki Yoshida
dataFormat=MESSAGE assumes the body content represents the entire soap message. If you are sending the plain payload to the endpoint, you have to use use dataFormat=PAYLOAD so that it will be wrapped in the soap envelope. 2016-06-21 2:52 GMT+02:00 Shultz, Dmitry : > Hi All, > > I have a route conf

Re: Can't get things on Oracle DB backout queue

2016-06-21 Thread Claus Ibsen
You can look at transactions so the message is rolled back to the queue. http://camel.apache.org/transactional-client.html Mind that if you have a message that keep failing (poison message) then you need the message broker to move such messages to a dead letter queue or some sorts so new messages

Camel Jasypt doesn't work in camel:sslContextParameters in Eclipse

2016-06-21 Thread Jack Ding
Hello, I think I am having the same issue as described in a post on the RedHat website.  Accessing (Jasypt) encrypted properties inside Camel Namspace'd elements - Red Hat Customer Portal | | | | || | | | | | Accessing (Jasypt) encrypted properties inside Camel Nams

Cannot cast org.apache.cxf.management.jmx.InstrumentationManagerImpl to org.apache.cxf.management.InstrumentationManager

2016-06-21 Thread Shultz, Dmitry
Hi All, I'm using Camel CXF component in app running in TomEE (webprofile-7.0), can generate and send SOAP request, but during response processing it fails with this exception: WARNING - Interceptor for {http://tempuri.org/}TestService#{http://www.test.com}ExecuteMultipleOperations has thrown

RE: SOAP Envelope and headers are not added by CXF by default

2016-06-21 Thread Shultz, Dmitry
It worked, Thanks! -Original Message- From: Aki Yoshida [mailto:elak...@gmail.com] Sent: June-21-16 4:37 AM To: users@camel.apache.org Subject: Re: SOAP Envelope and headers are not added by CXF by default dataFormat=MESSAGE assumes the body content represents the entire soap message. If