Re: Camel plugin no longer shows up in hawtio

2020-06-04 Thread Mark Nuttall
Might be a version issue. I had the same problem and that is what it was. Also, debugging is not there unless I drop back camel versions. On Thu, Jun 4, 2020, 7:38 PM Jeremy Ross wrote: > Hey camel folks, > > At some point the Camel plugin stopped showing up in hawtio. I can access > hawtio jus

Camel plugin no longer shows up in hawtio

2020-06-04 Thread Jeremy Ross
Hey camel folks, At some point the Camel plugin stopped showing up in hawtio. I can access hawtio just fine, but Camel is not in the menu navigation. I don't recall seeing anything in the upgrade guides about it. Did I miss something? Thanks, Jeremy

Re: Passwords in Camel endpoint URIs and limitations of RAW syntax

2020-06-04 Thread Roman Vottner
Hi Florian, if you're concerned about logging sensitive data, I'd recommend to configure your logging framework to filter such sensitive information in first place as the sensitive information might otherwise leak through other means not in control of Camel itself, i.e. as logged directly from wi

Re: camel-mail does not fetch attachments in Karaf.

2020-06-04 Thread Kushal Gautam
Hi JB: I am not exactly sure about the internals. https://camel.apache.org/components/latest/others/attachments.html >From the point of view of my code, it is: ... Map attachments = exchange.getIn().getAttachments(); ... for (String name : attachments.keySet()) { DataHandler dh

Re: camel-mail does not fetch attachments in Karaf.

2020-06-04 Thread Jean-Baptiste Onofre
Hi, How are you looking for the attachment ? In the class loader resource or using path ? I guess your attachement files are not found (either because it’s not private package of your bundle, or not imported correctly). Regards JB > Le 4 juin 2020 à 15:03, Kushal Gautam a écrit : > > Camel

camel-mail does not fetch attachments in Karaf.

2020-06-04 Thread Kushal Gautam
Camel Version: 2.20.3 Java: Open JDK 1.8.0_242 Karaf: 4.2.0 Hi: Currently, I am using camel-mail to fetch mails via IMAP. The route is pretty simple and looks like: from("imaps://{{IMAP_SERVER_URL}}" + "?username={{IMAP_EMAIL_USER}}" + "&password={{IMAP_EMAIL_PAS

Re: Passwords in Camel endpoint URIs and limitations of RAW syntax

2020-06-04 Thread Florian Patzl
Hi, thanks a lot, Fabry and Omar! Storing the password in a Properties file helps, I just tested with a really contrived example "++pwd2&)more)&}&}" and it worked. I hadn't tried that before because the explanations for using RAW in properties files put me off: > Notice we still define the RAW(v

Re: Passwords in Camel endpoint URIs and limitations of RAW syntax

2020-06-04 Thread Omar Al-Safi
Hi Florian, As Fabry mentioned, it would be worth checking to use config file to achieve this. Here is an example: https://github.com/apache/camel-examples/tree/master/examples/camel-example-debezium Regards, Omar On Thu, Jun 4, 2020 at 10:56 AM FabryProg wrote: > Hello Florian, > > Did you tr

Re: Passwords in Camel endpoint URIs and limitations of RAW syntax

2020-06-04 Thread FabryProg
Hello Florian, Did you try to save the password into a variable / parameter / config file and lookup it into the URI? Kind regards! Il giorno gio 4 giu 2020 alle ore 10:50 Florian Patzl < florian.pa...@evolit.com> ha scritto: > Hello Ralf, > thanks for your response. No, I didn't mention that i

Re: Passwords in Camel endpoint URIs and limitations of RAW syntax

2020-06-04 Thread Florian Patzl
Hello Ralf, thanks for your response. No, I didn't mention that in my description. :-) URL encoding would be my preferred solution, too, but unfortunately that does not seem to prevent the problems with passwords containing ")&". Unless something about my encoding is wrong. For example, given a