Re: cxf-core 3.1.7 Validation issue with camel

2016-09-22 Thread sari.reach
Any update on this Willem? -- View this message in context: http://camel.465427.n5.nabble.com/cxf-core-3-1-7-Validation-issue-with-camel-tp5787728p5787946.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Need help in processing comma seperated text file

2016-09-22 Thread raghavender.anth...@gmail.com
Thanks for the response. I would like to use Camel to read the file, process it and generate a new CSV file to send it to a different system. I get this file from a different system X and I need to process and transform it to CSV file in a different format which can be understood by system Y. I

Re: Need help in processing comma seperated text file

2016-09-22 Thread DariusX
It isn't clear how you want to use Camel in this picture. if it is simply to poll for files, and if the file is not huge, a simple/naive approach would be to read in the whole file and do all the steps you need. All as a single Processor following the "from:file" consumer. The the Data/Task

Re: Blueprint and property placeholder

2016-09-22 Thread Matt Pavlovich
update-strategy="none" will stop automatic reload of _all_ properties. There is not a way to indicate partial update, since all the beans are restarted when a configuration change occurs. On 9/20/16 1:43 PM, dpravin wrote: Hello All, We have some common properties, not integration/bundle

RE: CxfEndpoint soap client usernametoken authentication

2016-09-22 Thread catequil
I looked at that article already. It mainly talks about how to the digest version, but I need to do the username plain text. Then I could not figure out how to merge cxf-ws-security into the Camel route. Also, I was hoping that someone had already crossed this bridge and had a solution that was

RE: Why is the set body not being returned?

2016-09-22 Thread sim085
Thanks Siano, you are right. The header has the following properties; [code] CamelHttpResponseCode = 302 location = http://www.google.com.mt/?gws_rd=cr= [/code] I now understand; the correct body is being sent back to the browser but without removing the headers the browser sees the 302 status

Re: Convert Flat File to XML using a XSD Schema

2016-09-22 Thread Brad Johnson
Specifically see the section in their documentation: http://www.beanio.org/2.0/docs/reference/index.html#MappingXmlStreams On Thu, Sep 22, 2016 at 7:06 AM, Vitalii Tymchyshyn wrote: > Try camel-beanio. > > Ср, 21 вер. 2016 10:04 користувач Daniel P22 пише:

Re: Convert Flat File to XML using a XSD Schema

2016-09-22 Thread Vitalii Tymchyshyn
Try camel-beanio. Ср, 21 вер. 2016 10:04 користувач Daniel P22 пише: > Hi, I want to know if is possible convert a Flat File to XML using a XSD > Schema.I'm a Biztalk Developer, and I want something similar like Flat File > Disassembler.The Flat File Dissamsembler tool,

RE: CxfEndpoint soap client usernametoken authentication

2016-09-22 Thread Siano, Stephan
You probably should have a look at http://cxf.apache.org/docs/ws-security.html Best regards Stephan -Original Message- From: catequil [mailto:brat...@yahoo.com] Sent: Donnerstag, 22. September 2016 00:55 To: users@camel.apache.org Subject: CxfEndpoint soap client usernametoken

RE: Why is the set body not being returned?

2016-09-22 Thread Siano, Stephan
Hi, You probably should try to log the headers before you remove them. Maybe there is some redirect header in the response from google (and your browser follows that overwriting your OK response). Best regards Stephan -Original Message- From: sim085 [mailto:sim...@hotmail.com] Sent:

Re: Why is the set body not being returned?

2016-09-22 Thread sim085
Hello again. It seems that it is something in the headers. I have added ".removeHeaders("*")" to the chain and now jetty is correctly returning the set message through the "transform" call. i.e. this works - [code] from("jetty:http://localhost:8080;) .transform(constant(""))

Need help in processing comma seperated text file

2016-09-22 Thread raghavender.anth...@gmail.com
Hello Experts, I'm a new bee to the Camel technology and have the following requirement. Can someone help me with how to go about it. *P.S. I've gone through CSV data format, BeanIO and Bindy implementations of Camel and felt that they can't accommodate my requirement, correct me if am wrong

How to delete messages by AWS-SQS Component with deleteAfterRead

2016-09-22 Thread Yi Yan
Hi, I'm using camel-aws version 2.17.3, the deleteAfterRead options works well when I only set it by true, but when I use deleteIfFiltered(false) together, the message will not be deleted, then I changed them both as true the message can be deleted in queue. Is there any relationship between