Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

BaSyx / Documentation / Components / DataBridge / Features / Protocol Integration / ActiveMQ

< BaSyx ‎ | Documentation ‎ | Components ‎ | DataBridge ‎ | Features
Revision as of 07:18, 31 January 2023 by Ghazanfar.Danish.iese.fraunhofer.de (Talk | contribs) (Created page with "= Active MQ = The ActiveMQ broker can be integrated with DataBridge. When the message on the configured topic is published the route would process the data. == Configuration...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Active MQ

The ActiveMQ broker can be integrated with DataBridge. When the message on the configured topic is published the route would process the data.

Configuration

To configure ActiveMQ consumer in DataBridge you need to provide the unique id, and the ActiveMQ server details like host, port, and the queue i.e. the topic.

Sample Configuration

[
	{
		"uniqueId": "property1",
		"serverUrl": "127.0.0.1",
		"serverPort": 61616,
		"queue": "first-topic"
	}
]

Similarly, you can configure multiple ActiveMQ consumers inside the configuration file.

Naming Convention

The name of the ActiveMQ consumer configuration file should be activemqconsumer.json.

Back to the top