MuleSoft Certified Integration Architect – Level 1 — Question 85

An organization is designing an integration Mule application to process orders by submitting them to a back-end system for offline processing. Each order will be received by the Mule application through an HTTPS POST and must be acknowledged immediately. Once acknowledged, the order will be submitted to a back-end system. Orders that cannot be successfully submitted due to rejections from the back-end system will need to be processed manually (outside the back-end system).

The Mule application will be deployed to a customer-hosted runtime and is able to use an existing ActiveMQ broker if needed. The ActiveMQ broker is located inside the organization’s firewall. The back-end system has a track record of unreliability due to both minor network connectivity issues and longer outages.

What idiomatic (used for their intended purposes) combination of Mule application components and ActiveMQ queues are required to ensure automatic submission of orders to the back-end system while supporting but minimizing manual order processing?

Answer options

Correct answer: A

Explanation

The correct answer, A, utilizes an Until Successful scope for retrying submissions to the back-end system, along with ActiveMQ long-retry queues and dead-letter queues for manual processing, which is ideal for handling unreliable systems. The other options either do not use the appropriate ActiveMQ features or suggest configurations that do not support the required retry mechanisms effectively, leading to potential manual processing of rejected orders.