msqar
msqar

Reputation: 3020

How to install a connector on Mule Standalone?

I'm using Mule Standalone. From Mule Studio I'm using a connector I've installed, but since the standalone doesn't have it, it throws an error saying that it can't find the connector amqp:connector etc...

How can I install components in the Mule Standalone?

Upvotes: 0

Views: 623

Answers (2)

David Dossot
David Dossot

Reputation: 33413

It should be brought in your application /lib directory by Maven, as a dependency, when you build its package.

For the latest version of the AMQP transport, use:

<dependency>
  <groupId>org.mule.transports</groupId>
  <artifactId>mule-transport-amqp</artifactId>
  <version>3.4.0</version>
</dependency>

Upvotes: 1

Nikos
Nikos

Reputation: 7552

Check to see that your connector is in your projects class path before you export to standalone. You can do this automatically if you drag and drop your connector in a flow and save it.

Upvotes: 0

Related Questions