cxf web service and relative address with pax exam4

2017-09-14 Thread Matthew Shaw
Hi All, Using pax exam4 with karaf 4.1.2 to run my integration tests with my camel route. Using java dsl I declare from producer endpoint which works fine deploying the bundle into a stand-alone karaf container. CxfEndpoint endpoint = new CxfEndpoint(); endpoint.setCamelContext(getContext());

[ANNOUNCEMENT] Apache Camel 2.19.3 Released

2017-09-14 Thread Gregor Zurowski
The Camel community announces the immediate availability of the Camel 2.19.3 patch release. This release contains 40 fixes and improvements applied in the past weeks on the 2.19.x branch. The artifacts are published and ready for you to download [1] either from the Apache mirrors or from the Centr

RE: Using Simple expressions in externalized sql queries?

2017-09-14 Thread Paradies Thomas
Hi Claus, while putting together code fragments for the test case, I found the cause of the error... It's that simple, changing .enrich().simple("sql:{{select}}?dataSource=ds") to .enrich("sql:{{select}}?dataSource=ds")) made it. Sorry, my fault. Nevertheless, thank you. Thomas -- Follow

Re: Apache Camel - ftp component - need to use absolute path

2017-09-14 Thread Zoran Regvart
Hi Ceyhan, I'm bringing this back to the users mailing list, let's have a discussion there. I'm not privy discussion around using absolute/relative paths, but I respect the decision that was made as to me it seems that using relative paths is something most users will want to use. For example ther

Re: http get stream results

2017-09-14 Thread Claus Ibsen
Hi You can get access to the http request / http response objects in some of the camel components that are servlet api based and via that you can via java code write to that response yourself. Your use-case may be something where a regular Camel route is not always the ideal as a only solution. B