Camel.trunk.notest - Build # 2917 - Still Failing

2016-10-26 Thread Apache Jenkins Server
The Apache Jenkins build system has built Camel.trunk.notest (build #2917) Status: Still Failing Check console output at https://builds.apache.org/job/Camel.trunk.notest/2917/ to view the results.

Re: Unable to stream a file from a UNIX server

2016-10-26 Thread Quinn Stevenson
You’re using the stream:file endpoint with an ftp URL. Maybe try changing "stream://file?fileName=…” to “stream://url?url=…”? > On Oct 26, 2016, at 9:19 AM, charu_khanwalkar > wrote: > > Hi Team, > I am a developer ,new to Camel ,and currently working on a file

Camel 3.0 ideas: Remove throws Exception from API signatures and use unchecked exceptions

2016-10-26 Thread Antonin Stefanutti
Hi, Would you think that makes sense to remove the 'throws Exception' from a number of Camel API signatures as well as using unchecked exceptions instead? While this may be a matter of opinion still debated, there are a couple resources that gives some guidelines on the topic and that may help

Unable to stream a file from a UNIX server

2016-10-26 Thread charu_khanwalkar
Hi Team, I am a developer ,new to Camel ,and currently working on a file monitoring product which tracks a file moving from one component to the other. We are supposed to stream a LOG file on a UNIX server and the product is running on a windows servers. The way we integrate different components

[GitHub] camel pull request #1225: CAMEL-10399 camel-jetty - consumer should not load...

2016-10-26 Thread igarashitm
GitHub user igarashitm opened a pull request: https://github.com/apache/camel/pull/1225 CAMEL-10399 camel-jetty - consumer should not load attachment payload You can merge this pull request into a Git repository by running: $ git pull https://github.com/igarashitm/camel

Re: camel-extra upgrade 2.18

2016-10-26 Thread fabryprog
hello to everyone, the open source principle should be clear to everyone. Unfortunately for this project (camel-extra) it seems that the various PR are not important. It seems to have a caste of elect to the throne several days have passed without any response! Can I have some feedback?

Re: Adding type awareness in Camel route

2016-10-26 Thread Tomohisa Igarashi
Hi Claus, Thanks for the feedback! On 10/26/2016 09:39 PM, Claus Ibsen wrote: On Mon, Oct 17, 2016 at 4:35 AM, Tomohisa Igarashi wrote: Hi, I'd like to resume the discussion about this. I still think 3.0 would be the best target to get this feature fully supported,

Re: Adding type awareness in Camel route

2016-10-26 Thread Claus Ibsen
On Mon, Oct 17, 2016 at 4:35 AM, Tomohisa Igarashi wrote: > Hi, > > I'd like to resume the discussion about this. I still think 3.0 would be the > best target to get this feature fully supported, but to achieve it in better > shape, I'd like to have it in 2.19 as well as an

[GitHub] camel pull request #1222: Camel 10404 example spring boot

2016-10-26 Thread DariusX
Github user DariusX closed the pull request at: https://github.com/apache/camel/pull/1222 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

[GitHub] camel pull request #1224: CAMEL-9678 camel-undertow - Keep restarting server...

2016-10-26 Thread igarashitm
Github user igarashitm closed the pull request at: https://github.com/apache/camel/pull/1224 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

[GitHub] camel pull request #1224: CAMEL-9678 camel-undertow - Keep restarting server...

2016-10-26 Thread igarashitm
GitHub user igarashitm opened a pull request: https://github.com/apache/camel/pull/1224 CAMEL-9678 camel-undertow - Keep restarting server when add/remove ro… …utes Refactored camel-undertow consumer to enable hot swapping individual handlers which correspond to each

camel-bindy improvements

2016-10-26 Thread Allan C.
Hi, I have a use case for the component camel-bindy whereby in a CSV file, there could be one or more new line characters in any of its fields. I did a bit of digging into the codes and testing, which currently looks like it's not supported. I'm looking at RFC4180

Re: camel catalog semantics

2016-10-26 Thread Claus Ibsen
Hi element is an xml element, eg or etc attribute is an xml attribute expression is a xml element as a Camel expression (aka Camel language like groovy, simple, mvel etc) Yeah I think all the possible children are in the oneOf arrays. There is no description of the json document. Its a json

Re: Exchange Property vs Message Header : Use cases?

2016-10-26 Thread Claus Ibsen
You can find details about the Camel concepts such as exchange property vs message headers in chapter 1 of the Camel in Action book (both 1st or 2nd ed). A bit short message = part of message, and may not propgage over different wire protocols. property = not part of message, and stays for the

Exchange Property vs Message Header : Use cases?

2016-10-26 Thread Evgeny M
Where could I read up on concepts behind Exchange Properties and Message Headers? Would be very much interested in typical use cases for those from developing a custom component point of view. Is technology specific MESSAGE ID - a header or a property? What about Published timestamp? Thank you.