Re: Problems with recent HawtIO versions

2014-08-29 Thread Claus Ibsen
Hi Another user report this in the hawtio project https://github.com/hawtio/hawtio/issues/1513 On Thu, Aug 28, 2014 at 3:25 PM, Knut-HÃ¥vard Aksnes khaks...@gmail.com wrote: I am using Camel 2.12.4 in multiple wars deployed on tomcat 7. If I do deploy hawt-io 1.4.4.war in the same tomcat I do

camel-bindy 2.13.1 DateFormat Unparseable date

2014-08-29 Thread sandp
camel-bindy is throwing an *java.text.ParseException * on failing to parse date with format *dd-MMM- hh* *The date field in the CsvRecord is:* @DataField(pos = 1, required = true, pattern = dd-MMM- hh) *Row from CSV file:* 10-Nov-2013 00,ARTHUR,2,CON ED NY

Re: Xpath and namespaces in hybrid camel context

2014-08-29 Thread Claus Ibsen
Hi What version of Camel are you using? And how do you load those xml files? On Thu, Aug 28, 2014 at 4:02 PM, tonytt juan.cast...@yandex.com wrote: Hello everybody, I am not very experienced on camel, but we started a project a few months ago so I am starting to familiarize with it. Right

Camel JDBC Aggregator - the need for 2 tables /Aggregation?

2014-08-29 Thread java_applic...@outlook.com
My camel routes can have multiple aggregations. We are using Jdbc AggregationRepository for the same. The problem I am are facing is when the first aggregator marks an aggregation complete, the second one which is totally unrelated picks up the completed exchanges and processes them. Giving a

Re: camel-bindy 2.13.1 DateFormat Unparseable date

2014-08-29 Thread Charles Moulliard
What is different in the Camel code is that we set setLenient(false) before to parse the date -- public Date parse(String string) throws Exception { Date date; DateFormat df = this.getDateFormat(); ObjectHelper.notNull(this.pattern, pattern); // Check length

Re: camel-bindy 2.13.1 DateFormat Unparseable date

2014-08-29 Thread Charles Moulliard
Your input string date is not correct. According to Date Pattern, the letter 'h' means : Hour in am/pm (1-12) It accepts only 1-12 and not '0' like you did. http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html Here is an example which is working :

Re: camel-bindy 2.13.1 DateFormat Unparseable date

2014-08-29 Thread sandp
Yup you are right, I need an HH not hh. Worked now! -- View this message in context: http://camel.465427.n5.nabble.com/camel-bindy-2-13-1-DateFormat-Unparseable-date-tp5755843p5755851.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Logger issue, always static ?

2014-08-29 Thread Matt Sicker
It's rather universal to use static logger fields. I mean, check out the documentation: http://logging.apache.org/log4j/2.x/manual/api.html http://www.slf4j.org/faq.html#declaration_pattern On 28 August 2014 03:09, gterral guillaume.ter...@gmail.com wrote: Hello Camel community, I'm