user3675877
user3675877

Reputation: 43

mule with wmq--how to fetch message from queue in fifo manner

I have a flow with wmq, java transformer , and file endpoint.

The issue is wma is not fetching the message serially. Wmq is randomly picks the message and after java transformation, puts in a folder.

Any help will be appreciated.

Upvotes: 1

Views: 185

Answers (1)

David Dossot
David Dossot

Reputation: 33413

Is your queue configured correctly?

MSGDLVSQ(FIFO)

Otherwise, messages will be processed in priority sequence.

Source: http://www-01.ibm.com/support/knowledgecenter/SSFKSJ_7.0.1/com.ibm.mq.csqsav.doc/zs11430_.htm?cp=SSFKSJ_7.0.1%2F1-31-3-1-1&lang=en

Upvotes: 1

Related Questions