Re: CXF component fails to marshal SOAP fault details

2012-09-06 Thread inversion
Cheers Willem. Viktoras -- View this message in context: http://camel.465427.n5.nabble.com/CXF-component-fails-to-marshal-SOAP-fault-details-tp5718686p5718701.html Sent from the Camel - Users mailing list archive at Nabble.com.

how to convert xml inti csv file?

2012-09-06 Thread muneeb.ifkaar
Hello all - I'm new to camel. i want read xml file from some folder and convert it into .csv formate and save to other directory. Here is my route which I define for it. But it doesn't work for me. from(file:input?fileName=test.xmlnoop=true).marshall().csv().to(file:output?fileName=outPut.csv);

Re: How to act as TCP-client with Camel + Mina/Netty?

2012-09-06 Thread Claus Ibsen
Hi There is a number of JIRA tickets about this. Currently its not supported in the Camel components. eg to let Camel act as a client listening on a remote TCP server. On Wed, Sep 5, 2012 at 2:50 PM, Urppa petri.riipi...@insta.fi wrote: I'm working on my first Camel-based integration project

Re: Optimal way of exposing a JMX MBean when using Camel

2012-09-06 Thread Claus Ibsen
Hi Camel does not have a mbean exporter. However if a bean is used in a Camel route, you can add either Spring or Camel JMX annotations to it, and have it enlisted as if it was a Camel processor / eip. A dedicated mbean exporter as spring is not really camel's core logic. But frankly would be

Re: File and async/camel:threads woes

2012-09-06 Thread Claus Ibsen
Hi Why do it so complicated with 2 thread pools. The splitter can just refer to a custom thread pool profile / thread pool which you can customize as you want. Also the fine consumer with preMove will move the file asap, it starts routing. On Thu, Aug 30, 2012 at 5:24 PM, Ralf Steppacher

Re: Wait for transaction commit when putting messages on JMS queue using inOnly

2012-09-06 Thread Claus Ibsen
Hi I assume the custom logic cannot participate in the same TX as the activeMQ? You can use onCompletion to store the monitoring after the routing has completed. Then you can check if it was failed or not. And then only store when not failed. http://camel.apache.org/oncompletion.html However

Re: recipientList with parallelProcessing, how to stop thread(s)

2012-09-06 Thread Claus Ibsen
Hi This is no so easy. I have added a note in the docs about the timeout, that existing tasks may keep running. I logged a ticket to improve the code in Camel to improve the logic to graceful stop the running tasks https://issues.apache.org/jira/browse/CAMEL-5572 On Mon, Sep 3, 2012 at 4:35

Re: Can not use Karaf Camel feature behind HTTP proxy

2012-09-06 Thread Charx
This is a double post after subscribing to the mailing list... Hi Scott, yes we have configured http-proxy in the settings.xml. We also tried setting system-properties by using -Dhttp.proxyHost and -Dhttp.proxyPort, but it did not help. It seems as if the

Re: FTP Endpoint doesn't work on Linux

2012-09-06 Thread Hilde
Hello Claus! That is the ftp trace. Could you please explain me what is wrong configured with the ftp endpoint when you see below the trace? Here is the ftp endpoint:

Re: FTP Endpoint doesn't work on Linux

2012-09-06 Thread Claus Ibsen
On Thu, Sep 6, 2012 at 1:50 PM, Hilde hilde.sch...@yahoo.de wrote: Hello Claus! That is the ftp trace. Could you please explain me what is wrong configured with the ftp endpoint when you see below the trace? You can try to login manually and see if there is any files when you do a listing.

Re: FTP Endpoint doesn't work on Linux

2012-09-06 Thread Hilde
Hello Claus! Now I can start with downloading. With option /...passiveMode=true/ the dream comes true! What a shame! Cheers Hilde -- View this message in context: http://camel.465427.n5.nabble.com/FTP-Endpoint-doesn-t-work-on-Linux-tp5718548p5718720.html Sent from the Camel - Users

Re: Can not use Karaf Camel feature behind HTTP proxy

2012-09-06 Thread Scott England-Sullivan
Hi Alex, The problem is that the camel-script-jruby/camel-script-javascript/camel-script-groovy features reference library/versions not available in a well known public repository such as maven central. This notation allows Camel to designate said library in a location other than those included

Re: recipientList with parallelProcessing, how to stop thread(s)

2012-09-06 Thread Marco Crivellaro
Thank you, in the meantime I've worked it around by using an InflightRepository keeping track of exchange alive time, but it would be great to have a way to graceful stop running tasks. -- View this message in context:

camel route help

2012-09-06 Thread mfcplus
newbie here, the use case is cxf endpoint-mq request-multiple response on reply queue-aggregate all the responses-send back to cxf endpoint my question is how to i route the multiple response aggregator exchange back to the cxf endpoint? many thanks -- View this message in context:

Re: camel route help

2012-09-06 Thread Scott England-Sullivan
Hi Newbie, :-) By setting up your routes in the following manner it should all happen automatically. from: cxf endpoint to: mq request(InOut) from:mq request(InOut) process: aggregate responses As the Camel CXF Endpoint is an InOut Exchange pattern by default, the Camel internals know that

Re: camel-jsch in sink mode for one time copy from a remote host using SCP

2012-09-06 Thread vishal1981
Hi Hadrian , I am facing the same issue. Can you tell me where you checked in you fix. Thanks in advance, Vishal -- View this message in context: http://camel.465427.n5.nabble.com/camel-jsch-in-sink-mode-for-one-time-copy-from-a-remote-host-using-SCP-tp5680887p5718734.html Sent from the Camel

Re: how to convert xml inti csv file?

2012-09-06 Thread Christian Müller
You have multiple possibilities. The right choice (if its exist) depends on your skills, constraints, ... First, you could use XSLT to transform the XML into CVS. Have a look at the Camel xslt component how it works [1]. I would choose a different approach. I would use the camel-jaxb data format

FATAL level on Log Component

2012-09-06 Thread timgstewart
Minor problem, but according to the Log component documentation at http://camel.apache.org/log.html there is a level option: level INFOString Logging level to use. Possible values: FATAL, ERROR, WARN, INFO, DEBUG, TRACE, OFF Using FATAL gives: Caused by:

Re: FATAL level on Log Component

2012-09-06 Thread Willem jiang
I just checked the code, we don't support the FATAL level, it's a document issue. I just updated the wiki page for it. -- Willem Jiang FuseSource Web: http://www.fusesource.com (http://www.fusesource.com/) Blog: http://willemjiang.blogspot.com (http://willemjiang.blogspot.com/) (English)

Re: camel route help

2012-09-06 Thread Willem jiang
You can take a look at the loan-broker-example[1]. [1]http://camel.apache.org/loan-broker-example.html -- Willem Jiang FuseSource Web: http://www.fusesource.com (http://www.fusesource.com/) Blog: http://willemjiang.blogspot.com (http://willemjiang.blogspot.com/) (English)

Re: camel route help

2012-09-06 Thread mfcplus
thanks for the quick response, can you tell where in the source code that does this internal chaining, just would like to know how it works under the cover? is it in routebuilder.java? also how would I go about learning java dsl/spring dsl for camel, there doesn't seem to be much documentation for

Re: camel route help

2012-09-06 Thread Claus Ibsen
On Fri, Sep 7, 2012 at 4:07 AM, mfcplus mfcp...@yahoo.com wrote: thanks for the quick response, can you tell where in the source code that does this internal chaining, just would like to know how it works under the cover? is it in routebuilder.java? also how would I go about learning java