Anypoint MQ Connector Release Notes
November 2017
Select
Note: Anypoint MQ version 2.0 and later only works with Mule 4 and Studio 7. For the Mule 3 Anypoint MQ Connector Release Notes, see Anypoint MQ Connector Release Notes.
To support Exchange 2.0 properly, the feature ID of Anypoint MQ Connector has changed. Before you download MQ v1.2.0 and later from Exchange 2.0, uninstall the existing version of this connector in Studio.
This release of the Anypoint MQ Connector lets you add messaging access to Anypoint MQ queues and exchanges from Anypoint Studio applications.
Version 2.0.0 - November 17, 2017
The Anypoint MQ connector now adds support for Mule 4 and Studio 7.
Version 2.0.0 - Known Issues
-
The Anypoint MQ connector doesn’t support tracking.
Example with tracking:
1 2 3 4
<flow name="customers-all-get" tracking:enable-default-events="true"> <anypoint-mq:subscriber config-ref="Anypoint_MQ_Configuration" destination="testQueue" acknowledgementMode="AUTO"/> <tracking:transaction id="customers-all-get"/> </flow>
This is the same example with the subscriber tracking statement removed:
1 2 3
<flow name="customers-all-get"> <anypoint-mq:subscriber config-ref="Anypoint_MQ_Configuration" destination="testQueue" acknowledgementMode="AUTO"/> </flow>