Re: Logging in Apache camel

2018-04-13 Thread gokuljayaraj
Hi Claus, Thanks. Was able to get it to work. Besides just noticed something. On an exchange with no out, initially exchange.hasOut() returns false. But if I just call exchange.getOut() and exchange.hasOut() becomes true and causes issues. Is this expected? Get Outlook for Androi

Logging in Apache camel

2018-04-09 Thread gokuljayaraj
Hello everyone, So we have multiple camel routes that are configured by logback to log into separate log files. Is there a way to specify a logger into the route itself? The reason I ask is because, when switched to debug, everything other than what we explicitly log from our logger seems t

Re: Running Quartz jobs from db store

2018-03-01 Thread gokuljayaraj
Hi Claus,    NnnnSorry for the confusion. Basically I want the schedule of the job to be modifiable at run time from the database. I looked at quartz2 examples but all of them seem to have the cron expression specified which I don't want to do. I have set up my routes to run from se

Running Quartz jobs from db store

2018-03-01 Thread gokuljayaraj
Hi, Is there any clear documentation on how to set up camel running on spring boot to use quartz jdbc scheduler without using the quartz2 component? I have implemented job class and configured the quartz.properties file as well. But the execute block doesn't trigger no matter what I do. A