[GitHub] camel pull request: Allow flexible formatting from URI: JSON | XML

2016-05-12 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/camel/pull/983 --- 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 enabl

[GitHub] camel pull request: Allow configuration of connectionFactory& co i...

2016-05-12 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/camel/pull/982 --- 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 enabl

Re: Restriction in RestConfiguration with blueprint

2016-05-12 Thread Claus Ibsen
Hi Yeah we should avoid setting up those dependencies from the parser if they values are using property placeholders https://issues.apache.org/jira/browse/CAMEL-9963 On Wed, May 11, 2016 at 11:48 PM, Arnaud Deprez wrote: > Hi riders, > > In camel 2.16.X, I was able to use configure a RestConfigu

Re: Dynamic URI based on file name/cfg file

2016-05-12 Thread Claus Ibsen
Hi Please use the @user mailing list / user forum to get help with using Apache Camel. On Wed, May 11, 2016 at 6:20 PM, Kevin-Void wrote: > Hi Folks, > > I am trying to pass a *to URI value dynamically* with a property value. That > property value will be configured already in the cfg file. > >

Re: Issues in implementing .choose, .when in the camel route

2016-05-12 Thread Claus Ibsen
Hi Please use the @user mailing list / user forum to get help with using Apache Camel. On Wed, May 11, 2016 at 5:43 PM, Kriti wrote: > Hi, > > I have a camel route like this - > > public void configure() { > > - > - > > from('mina2:tcp://'+ incomi

Camel.trunk.notest - Build # 2749 - Failure

2016-05-12 Thread Apache Jenkins Server
The Apache Jenkins build system has built Camel.trunk.notest (build #2749) Status: Failure Check console output at https://builds.apache.org/job/Camel.trunk.notest/2749/ to view the results.

Camel.2.15.x.notest - Build # 211 - Failure

2016-05-12 Thread Apache Jenkins Server
The Apache Jenkins build system has built Camel.2.15.x.notest (build #211) Status: Failure Check console output at https://builds.apache.org/job/Camel.2.15.x.notest/211/ to view the results.

Dynamic URI based on file name/cfg file

2016-05-12 Thread Kevin-Void
Hi Folks, I am trying to pass a *to URI value dynamically* with a property value. That property value will be configured already in the cfg file. When the file name is extracted using *CamelFileNameOnly* header, it has to get passed to the to Uri endpoint. So that the same name is referred in th

Issues in implementing .choose, .when in the camel route

2016-05-12 Thread Kriti
Hi, I have a camel route like this - public void configure() { - - from('mina2:tcp://'+ incomingHL7Listener.getIp() + ':' + incomingHL7Listener.getPort() +'?codec=#rcmhl7codec') .choice()