Re: Making the Camel Maven plugins Eclipse compatible

2015-05-18 Thread Claus Ibsen
On Mon, May 18, 2015 at 12:30 PM, Victor NOËL wrote: > Hi, > > So I have been working on a PR for that. > > Can you clarify something for me? > > Only camel-maven-plugin, camel-package-maven-plugin and guice-maven-plugin > are meant to be used by non camel team developers? Yes they are for end us

Re: Client not abel to recieve response within 20seconds

2015-05-18 Thread gargankur007
Hi I used the header option and it worked.Meanwhile I would be extrememly tahnkful if you could help me with this http://camel.465427.n5.nabble.com/Web-Srevice-exposed-over-https-not-working-td5767156.html Been stuck for few days on this -- View this message in context: http://camel.465427

Re: Camel 2.15.2 and RabbitMq 3.5.1

2015-05-18 Thread ceepan
Can anybody help with this. I have installed RabbitMQ and using it with the default settings. The Java project that has Camel is very simple but I don't seem to be able to read from the Rabbit Queue no matter what I try. Any suggestions will be gratefully received. Thanks, Paul -- View this

Re: JSON to XML Mapping/Transformation

2015-05-18 Thread Gnanaguru S
One way to handle this issue: http://stackoverflow.com/questions/30228343/replace-whitespace-in-json-keys/30228588?noredirect=1#comment48726021_30228588 Regards Guru -- View this message in context: http://camel.465427.n5.nabble.com/JSON-to-XML-Mapping-Transformation-tp5767112p5767231.html Se

Re: 2.15.1 -FailedToCreateRouteException : DataSource must be configured

2015-05-18 Thread Swee
Yogesh, thank you! it works now. Best Regards, Swee Thai -- View this message in context: http://camel.465427.n5.nabble.com/2-15-1-FailedToCreateRouteException-DataSource-must-be-configured-tp5766999p5767235.html Sent from the Camel - Users mailing list archive at Nabble.com.

FTPS Unable to find files in directory

2015-05-18 Thread vijay
Hi Apache camel unable to find files in the directory after successfully connecting to the FTPS server. Camel version 2.11.0 My end point: Creating endpoint uri=[ftps://usern...@server.co.nz:6021/TEST?antInclude=*MDDD_E_*.csv&binary=false&consumer.delay=6&delete=true&download=true&password=**

Re: Web Srevice exposed over https not working

2015-05-18 Thread Aki Yoshida
If this happens all the time, something is wrong with the connection. But from the information that you provided, it is difficult to determine the cause. cxf-2.7.0 that you are using is a bit too old these days, as the current 2.7.x version is 2.7.16. Besides, you are using the Redhat version of th

Re: Vramel or modifying Camel

2015-05-18 Thread Anton Hughes
On Mon, May 18, 2015 at 3:58 PM, Henryk Konsek wrote: > The threading model is in camel-core [1]. But I doubt if it can be easily > replaced with the different implementation. > Thanks Henryk What issues/challenges do you see in this task?

Re: websocket with jetty 9

2015-05-18 Thread Amit
I did try websocket component with jetty 9 and Apache Camel 2.15.2 and i got same exception due to SslContextFactory class moved in jetty 9 to org.eclipse.jetty.util.ssl.folder and Apache websocket reference to org.eclipse.jetty.http.ssl.SslContextFactory that is only exist in Jetty 8 and be

Re: websocket with jetty 9

2015-05-18 Thread Amit
I did try websocket component with jetty 9 and Apache Camel 2.15.2 and i got same exception due to SslContextFactory class moved in jetty 9 to org.eclipse.jetty.util.ssl.folder and Apache websocket reference to org.eclipse.jetty.http.ssl.SslContextFactory that is only exist in Jetty 8 and be

Re: Vramel or modifying Camel

2015-05-18 Thread Henryk Konsek
Hi Anton, The threading model is in camel-core [1]. But I doubt if it can be easily replaced with the different implementation. Cheers! [1] https://github.com/apache/camel/tree/master/camel-core/src/main/java/org/apache/camel pon., 18.05.2015 o 11:44 użytkownik Anton Hughes napisał: > Can any

Re: Spring versions in camel features file for Karaf

2015-05-18 Thread Charlie Mordant
As an addition, if you're not constrained on the runtime, you can use my framework that runs Camel 2.15.x, Spring 4.x (but excludes camel-spring in favor of camel-blueprint). 2015-05-18 13:31 GMT+02:00 Charlie Mordant : > Hi, > > No, it's not a no go. Don't forget you're in an OSGI environment so

Re: Spring versions in camel features file for Karaf

2015-05-18 Thread Charlie Mordant
Hi, No, it's not a no go. Don't forget you're in an OSGI environment so theorically, you can run some required Spring 3.X module and their according 4.x counterparts together :). regards, 2015-05-18 9:10 GMT+02:00 Svend-Ole Nielsen : > So a Karaf 2.4, Camel 2.15 and Spring 4 is a no go I guess.

camel-ftp sendNoOp takes 15 minutes

2015-05-18 Thread rwijngaa
Hi, In one of our production routes we see a delay of 15 minutes per ftp'ed file (on the clock). So sending 4 files takes 1 hour ! I turned on the trace logging of the RemoteFileProducer and directly before and after the 15 minutes there are 2 log lines: Any ideas on why the noop can take that

Re: Making the Camel Maven plugins Eclipse compatible

2015-05-18 Thread Victor NOËL
FYI the PR is there: https://github.com/apache/camel/pull/518 Le 18/05/2015 12:30, Victor NOËL a écrit : Hi, So I have been working on a PR for that. Can you clarify something for me? Only camel-maven-plugin, camel-package-maven-plugin and guice-maven-plugin are meant to be used by non camel

Re: Camel elasticsearch bulk api not working

2015-05-18 Thread umang
Got it working now. Re read the documentation and found that we have to send List> for bulk index and Map for single index. For single index automatically the request was getting converted to Map. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-elasticsearch-bulk-api-n

Re: Making the Camel Maven plugins Eclipse compatible

2015-05-18 Thread Victor NOËL
Hi, So I have been working on a PR for that. Can you clarify something for me? Only camel-maven-plugin, camel-package-maven-plugin and guice-maven-plugin are meant to be used by non camel team developers? And the goals generate-and-attach-archetype-catalog, generate-eips-list and prepare-cata

Re: Vramel or modifying Camel

2015-05-18 Thread Anton Hughes
Can anyone direct me to where/how I can abstract the camel thread model so that it can work with other async models such as Vertx. Thanks On Mon, May 11, 2015 at 1:59 PM, Anton Hughes wrote: > > On Mon, May 11, 2015 at 4:55 AM, Willem Jiang > wrote: > >> the Vramel way is like reimplement the

Re: Camel elasticsearch bulk api not working

2015-05-18 Thread Henryk Konsek
Can you show us your route? :) And the body you send to the ES producer. Cheers! niedz., 17.05.2015 o 17:03 użytkownik umang napisał: > Hi, > > I was experimenting with camel elasticsearch component. I was sending > following request to elasticsearch with INDEX operation. It is working as > exp

RE: camel spring-ws component with ws-security (username and password)

2015-05-18 Thread Ronny Aerts
Hello Claus, I would like to keep my spring version the same as the one provided with camel to avoid conflicts. -- vriendelijke groeten, Ronny Aerts – Intris nv – Wapenstilstandlaan 47, 2600 Berchem, België R&D Integration Architect Prince II certified – ITIL certified Tel: +32-3-326.50.75

SV: Spring versions in camel features file for Karaf

2015-05-18 Thread Svend-Ole Nielsen
So a Karaf 2.4, Camel 2.15 and Spring 4 is a no go I guess. What a bummer... /Svend -Oprindelig meddelelse- Fra: Charlie Mordant [mailto:cmorda...@gmail.com] Sendt: 14. maj 2015 12:47 Til: users@camel.apache.org Emne: Re: Spring versions in camel features file for Karaf Hi, As what I