How do I write a Mule flow to use a Quartz Scheduler to read messages from Queue on regular interval (cron)?
My first flow includes a CXF->Queue. I need this in my second flow: Queue->Quartz->Component
<quartz:inbound-endpoint jobName="ReadQIN" cronExpression="* * * * * ?" repeatInterval="0" doc:name="Quartz">
<quartz:endpoint-polling-job groupName="ReadQINGroup" jobGroupName="ReadQINJobGroup">
<quartz:job-endpoint address="jms://QIN"/>
</quartz:endpoint-polling-job>
</quartz:inbound-endpoint>
It ended in org.quartz.SchedulerException: Trigger does not reference given job!