Re: Google Service account for google-drive component

2018-03-05 Thread Guillermo Castro
n/java/org/apache/camel/component/google/drive/GoogleDriveConfiguration.java > > because it doesn't' seem to me it can accept the JSON key. I will appreciate > if someone can point me to the right direction. > > > Cheers, > Dmitry -- Guillermo Castro webmas...@javageek.org http://javageek.org/

Re: Apache Camel vs Apache Storm

2018-02-15 Thread Guillermo Castro
two libraries used for different purposes? > > Thanks > Pavel -- Guillermo Castro webmas...@javageek.org http://javageek.org/

Re: Using different SSLContextParameters with HTTP4 component

2013-10-21 Thread Guillermo
Hi Thank you for the information. I'll be waiting for more news. Regards, Guillermo. -- View this message in context: http://camel.465427.n5.nabble.com/Using-different-SSLContextParameters-with-HTTP4-component-tp5740430p5741970.html Sent from the Camel - Users mailing list archi

Re: Using different SSLContextParameters with HTTP4 component

2013-09-30 Thread Guillermo
Thanks for your reply Claus. But I still have a problem. My basic route definition is like this: ... ... .to("http4-foo:") In this case an exception is thrown by the method getPort in HttpComponent class because the scheme is not https4, http4, https or http: Unknown scheme, cannot determi

Using different SSLContextParameters with HTTP4 component

2013-09-29 Thread Guillermo
re the config I should to use for each hhtp invocation? Thanks in advance. Guillermo. Additional info: Using camel version 2.11.2 -- View this message in context: http://camel.465427.n5.nabble.com/Using-different-SSLContextParameters-with-HTTP4-component-tp5740430.html Sent from the Camel - Use

Re: How to poll Google mail inbox for mails

2013-08-30 Thread Guillermo
Thanks for your reply. I have seen that the problem was not in my Java installation. The problem was that the application server (weblogic) did not have the imap.gmail.com certificate imported. I have followed the instructions that are explained in the link of stackoverflow to do that. Thanks.

Re: How to poll Google mail inbox for mails

2013-08-29 Thread Guillermo
Ok, i think that connecting with protocol imap (IMAP without SSL) does not work because isn't supported by GMail. I need to use imaps (IMAP with SSL). But in that case i still have a problem: Consumer Consumer[imaps://imap.gmail.com?consumer.delay=6&delete=false&password=**&unseen=true&use

How to poll Google mail inbox for mails

2013-08-29 Thread Guillermo
's wrong? What is the correct way to poll the Google mail inbox using imap or imaps? Thanks in advance. Guillermo. Additional info: Using camel version 2.10.1 -- View this message in context: http://camel.465427.n5.nabble.com/How-to-poll-Google-mail-inbox-for-mails-tp5738222.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: How to set DataField locale for Double records in camel bindy

2013-05-09 Thread Guillermo
Hi, I have defined these fields as a String so I am using the DecimalFormat class to set the right locale. This is not the best solution but temporarily i can work with it. Regards. -- View this message in context: http://camel.465427.n5.nabble.com/How-to-set-DataField-locale-for-Double-reco

Re: AW: Best strategy for skipping lines in CSV files with bindy

2013-05-08 Thread Guillermo
Thanks for the reply! I will think about which of the two forms is the best for me. Regards. -- View this message in context: http://camel.465427.n5.nabble.com/Best-strategy-for-skipping-lines-in-CSV-files-with-bindy-tp5731784p5732190.html Sent from the Camel - Users mailing list archive at N

How to set DataField locale for Double records in camel bindy

2013-05-08 Thread Guillermo
Hi, I have defined a CsvRecord with a DataField: @DataField(pos = 1, required = true) private Double price; In the csv file this field has this format: XX,XX i.e. the decimal separator is the ',' and the grouping separator is the '.' If the VM is in ENGLISH locale/language, the records are not

Re: Best strategy for skipping lines in CSV files with bindy

2013-05-08 Thread Guillermo
Hi, Finally I have created a processor with a BufferedReader to filter the lines of the file according to a regular expression, so I get the file as String only with the important lines. Later, I use bindy as usual. Regards. Guillermo. -- View this message in context: http://camel.465427.n5

Best strategy for skipping lines in CSV files with bindy

2013-04-30 Thread Guillermo
tegy to do that? Thanks in advance. Guillermo. Additional info: Using camel version 2.9.4 -- View this message in context: http://camel.465427.n5.nabble.com/Best-strategy-for-skipping-lines-in-CSV-files-with-bindy-tp5731784.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Configure clientConnectionManager endpoint option in camel hhtp4

2013-03-25 Thread Guillermo
Hi, I was not using the #. That worked, thank you! Guillermo. -- View this message in context: http://camel.465427.n5.nabble.com/Configure-clientConnectionManager-endpoint-option-in-camel-hhtp4-tp5729558p5729751.html Sent from the Camel - Users mailing list archive at Nabble.com.

Configure clientConnectionManager endpoint option in camel hhtp4

2013-03-20 Thread Guillermo
erent connection manager when I'm configuring each httpClient with the option httpClientConfigurer (in this case the appropiate configuration is set and registered and I'm using the same way to do that but with the other option is not working). Thanks in advance. Guillermo. Additional info: U