Camel, Karaf and Hawtio question about portnumbers

2016-05-02 Thread michael.esmann
Hi, We are implementing an integration application using: - Camel 12.14.1 - Hawtio 1.4.56 - Karaf 3.0.5 My question/problem is: We want the Hawtio web application to be accessed by a specific unique URL/portnumber because the Hawtio application gives access to some very basic functionalities abo

Problem with Camel 2.17.3 and Karaf 3.0.8

2016-10-04 Thread michael.esmann
Hi I am trying to install Camel 2.17.3 features in Karaf 3.0.8. The problem can be reproduced this way: - Make a clean Karaf 3.0.8 installation - Start Karaf and install features: feature:repo-add camel 2.17.3 feature:install cxf feature:install camel-http - Stop Karaf and start again. No

Re: Problem with Camel 2.17.3 and Karaf 3.0.8

2016-10-05 Thread michael.esmann
Thank you for the reply. But I am not quite sure: What is the "web" feature exactly? /Michael -- View this message in context: http://camel.465427.n5.nabble.com/Problem-with-Camel-2-17-3-and-Karaf-3-0-8-tp5788341p5788373.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Problem with Camel 2.17.3 and Karaf 3.0.8

2016-10-05 Thread michael.esmann
Thank you for the reply. But I am not quite sure: What is the "web" feature exactly? /Michael -- View this message in context: http://camel.465427.n5.nabble.com/Problem-with-Camel-2-17-3-and-Karaf-3-0-8-tp5788341p5788374.html Sent from the Camel - Users mailing list archive at Nabble.com.

Dynamically remove "from" endpoint

2016-12-19 Thread michael.esmann
Hi, We are using Camel 2.17.3 (blueprint) with Karaf 4.0.7 I would like to know if there is a way to exclude a "from" endpoint from a route by a configuration property. The reason is that we have many different environments and not all type of endpoint exists in the environments. A simple exampl

Re: Dynamically remove "from" endpoint

2016-12-19 Thread michael.esmann
Thank you for the quick reply !! Saves me from using time on more experiments. /Michael -- View this message in context: http://camel.465427.n5.nabble.com/Dynamically-remove-from-endpoint-tp5791687p5791697.html Sent from the Camel - Users mailing list archive at Nabble.com.

How to submit a ticket/bug report to Camel

2015-09-02 Thread michael.esmann
Hi, I am trying to submit a ticket/bug report to Camel. When I follow the link "Issue Tracker" on http://camel.apache.org/support.html then I am transferred to an Atlassian JIRA site for Camel. I have created an account on this site, but I am still having trouble finding out how to create a ticket

Re: Problem upgrading to Camel 2.15.3 in Karaf 3.0.4

2015-09-03 Thread michael.esmann
Thank you very much for the answer!! I will try the new Camel version. NB: I am new to this user forum, and must learn how to search in the existing jira issues to see if a problem has already been resolved ;-) Regards Michael -- View this message in context: http://camel.465427.n5.nabble.co

Re: How to submit a ticket/bug report to Camel

2015-09-03 Thread michael.esmann
Ahh .. My problem was, that I activated the *dropdown* menu on the "Create" button and chose "Bug Detail". I should just have clicked directly on the "Create" button. /Michael -- View this message in context: http://camel.465427.n5.nabble.com/How-to-submit-a-ticket-bug-report-to-Camel-tp5771

Camel and Karaf compatibility

2015-09-08 Thread michael.esmann
Hi, On http://camel.apache.org/karaf there is a list of Camel and Karaf versions that are compatible. On this list it says that Camel 2.15 is compatible with Karaf 2.4. Does this mean that I can not expect Camel 2.15 to work correctly with Karaf 3.0? Are there any known problems with running Camel

Errorhandling in setProperty/script

2015-09-25 Thread michael.esmann
Hi, I have a situation where I want to set some properties on my exchange, if it is possible. But I dont want the exchange to fail, if the property is not present. I have tried something like this: request.body.substring(25, 33)

Re: Errorhandling in setProperty/script

2015-09-25 Thread michael.esmann
I just found out - after reading a little in "Camel In Action" ;-) - that I could use this: org.apache.camel.builder.script.ScriptEvaluationException true Mayby that is sufficient in my case. This exception would probably only occur in my "javascript"(?) -