Contact Us 1-800-596-4880

Anypoint MQ Connector Overview

Anypoint Connector for Anypoint MQ (Anypoint MQ Connector) provides publish-subscribe messaging to Mule apps using the Anypoint MQ cloud service.

Anypoint MQ supports a wide range of messaging use cases, such as enterprise messaging patterns, asynchronous communications between microservices, and IoT. Anypoint MQ also has a REST API for publishing or consuming messages using frameworks such as node.js, Java, Go, and DevOps bash scripts.

Requirements

To use this connector, you must be familiar with Anypoint Studio, Anypoint Connectors, and application flows. Anypoint MQ Connector is free, but connecting to the service in Anypoint Platform requires a license.

Compatibility

Software Version

Mule runtime engine

4.1.1 and later

Anypoint Studio

7 and later

This documentation applies to Anypoint MQ Connector 4.x only. To migrate from version 3.x to the version 4.x, see Upgrading and Migrating Anypoint MQ Connector.

Install Anypoint MQ Connector

You can use this connector with apps written in Anypoint Studio, standalone apps, or apps written in XML.

In Anypoint Studio:

  1. Create or open a Mule project.

  2. Click the Exchange icon in the Studio task bar.

  3. Enter your Anypoint Platform username and password and click Sign in.

  4. Select All assets and search for MQ.

  5. Select Anypoint MQ Connector - Mule 4, and click Add to project.

  6. Follow the prompts to install the connector.

For standalone apps or apps written in XML:

  1. Open your Mule project in Anypoint Studio.

  2. Add the connector as a dependency in the pom.xml file:

    <dependency>
      <groupId>com.mulesoft.connectors</groupId>
      <artifactId>anypoint-mq-connector</artifactId>
      <version>x.x.x</version>
      <classifier>mule-plugin</classifier>
    </dependency>

Replace x.x.x with the version that corresponds to the connector you are using.

To obtain the most up-to-date pom.xml file information, access the connector in Anypoint Exchange and click Dependency Snippets.

Configure an Operation in a Mule Project

In Anypoint Studio:

  1. Install the connector, if it’s not already installed.

  2. Create or open a Mule project.

  3. Search for mq in the Mule Palette.

  4. Click Anypoint MQ to see the available operations for the connector.

    Anypoint MQ Mule Palette
  5. Configure the operation accordingly.

    Operation Description

    ACK

    Indicates that the message was consumed correctly and deletes the message from In Flight status.

    Consume

    Consumes messages from a queue.

    NACK

    Changes the status of the message from In Flight to In Queue to be consumed again by an available consumer.

    Publish

    Publishes messages to a destination.

    Subscriber

    Listens for messages from a queue.

Configure the Connection to the Default Subscriber

For each operation, you must configure a connection to a subscriber.

  1. In Anypoint Studio, drag the name of the operation from the Mule Palette to the canvas, and then select it.

  2. Click the green plus sign for Connector configuration.

  3. In Anypoint Platform, click MQ > Destinations.

  4. Click Copy and select Connector version 4.x and later from the menu:

    Copy button in the Destinations page
  5. In Anypoint Studio, in the Anypoint MQ Config window, paste the URL in the URL field.

  6. In Anypoint MQ, click MQ > Client Apps.

    If needed, create a client app.

  7. Click the client app name to display the details pane.

  8. Copy the client app ID and client secret values from the details pane to the Anypoint MQ Config window in Studio:

    URL, Client App ID, and Client Secret fields in the Anypoint MQ Config window
  9. Click Test Connection to verify the Anypoint MQ Default subscriber.

  10. Click OK.

View on GitHub