Hi everyone
Could you help solve a problem please?
I am using an MQ series as JMS provider. To retrieve messages, I have a JMS trigger pointed on the MQ queue.
The requirements are:
- the trigger gets a document from the MQ queue and executes the IS trigger service.
- if the trigger service fails, the document stays on the MQ queue
- the trigger keeps retrying the same document - if it succeeds, the document is removed from the MQ queue
To meet these requirements, here’s what I do:
Trigger Settings
• Set trigger ‘Retry failure behavior’ property to ‘Suspend and retry later’
the “Suspend and Retry Later” option provides a way to resubmit the message programmatically and prevents the trigger from retrieving and processing other messages until the cause of the transient error condition has been remedied.
However, my problem is that, in case of a retry failure, the trigger is suspended but the message is not recovered in the MQ series.
I highlight the fact that it works well when I have a broker as JMS provider.
In other words, my problem is that,unlike the broker JMS, the IS does not recover the message in the MQ series queue. I tested with both.
- in case of broker jms provider: the trigger is suspended and the message is recovered
- in case of MQ series: the trigger is suspended but the message is not recovered
I don t know the reasons of such differences!