Skip to content

Commit

Permalink
a few more ActiveMQ Artemis doc adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
patriknw committed Dec 1, 2023
1 parent 0ad9794 commit 472ed66
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/src/main/paradox/jakarta-jms/browse.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ A JMS `selector` can be used to filter the messages. Otherwise it will browse th

## Configure JMS browse

To connect to the JMS broker, first define an appropriate @javadoc[jakarta.jms.ConnectionFactory](jakarta.jms.ConnectionFactory). The Alpakka tests and all examples use Active MQ.
To connect to the JMS broker, first define an appropriate @javadoc[jakarta.jms.ConnectionFactory](jakarta.jms.ConnectionFactory). The Alpakka tests and all examples use ActiveMQ Artemis.

Scala
: @@snip [snip](/jakarta-jms/src/test/scala/docs/scaladsl/JmsConnectorsSpec.scala) { #connection-factory }
Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/paradox/jakarta-jms/consumer.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Java

## Configure JMS consumers

To connect to the JMS broker, first define an appropriate @javadoc[jakarta.jms.ConnectionFactory](jakarta.jms.ConnectionFactory). The Alpakka tests and all examples use [Active MQ Artemis](https://activemq.apache.org/components/artemis/).
To connect to the JMS broker, first define an appropriate @javadoc[jakarta.jms.ConnectionFactory](jakarta.jms.ConnectionFactory). The Alpakka tests and all examples use [ActiveMQ Artemis](https://activemq.apache.org/components/artemis/).

Scala
: @@snip [snip](/jakarta-jms/src/test/scala/docs/scaladsl/JmsConnectorsSpec.scala) { #connection-factory }
Expand Down Expand Up @@ -187,7 +187,7 @@ Java

### Object sources

The `objectSource` emits the received message body as deserialized JVM instance. As serialization may be a security concern, JMS clients require special configuration to allow this. The example shows how to configure ActiveMQ connection factory to support serialization. See [ActiveMQ Security](https://activemq.apache.org/objectmessage.html) for more information on this.
The `objectSource` emits the received message body as deserialized JVM instance. As serialization may be a security concern, JMS clients require special configuration to allow this. The example shows how to configure ActiveMQ Artemis connection factory to support serialization. See [Controlling JMS ObjectMessage deserialization](https://activemq.apache.org/components/artemis/documentation/latest/security.html#controlling-jms-objectmessage-deserialization) for more information on this.

Scala
: @@snip [snip](/jakarta-jms/src/test/scala/docs/scaladsl/JmsConnectorsSpec.scala) { #object-source }
Expand Down
6 changes: 3 additions & 3 deletions docs/src/main/paradox/jakarta-jms/producer.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The JMS message model supports several types of message bodies in (see @javadoc[

### Configure JMS producers

To connect to the JMS broker, first define an appropriate @javadoc[jakarta.jms.ConnectionFactory](jakarta.jms.ConnectionFactory). Here we're using [Active MQ Artemis](https://activemq.apache.org/components/artemis/).
To connect to the JMS broker, first define an appropriate @javadoc[jakarta.jms.ConnectionFactory](jakarta.jms.ConnectionFactory). Here we're using [ActiveMQ Artemis](https://activemq.apache.org/components/artemis/).

Scala
: @@snip [snip](/jakarta-jms/src/test/scala/docs/scaladsl/JmsConnectorsSpec.scala) { #connection-factory }
Expand Down Expand Up @@ -105,8 +105,8 @@ Java

#### Object sinks

Create and configure ActiveMQ connection factory to support serialization.
See [ActiveMQ Security](https://activemq.apache.org/objectmessage.html) for more information on this.
Create and configure ActiveMQ Artemis connection factory to support serialization.
See [Controlling JMS ObjectMessage deserialization](https://activemq.apache.org/components/artemis/documentation/latest/security.html#controlling-jms-objectmessage-deserialization) for more information on this.
Create a sink, that accepts and forwards @apidoc[jakartajms.JmsObjectMessage$]s to the JMS provider:

Scala
Expand Down

0 comments on commit 472ed66

Please sign in to comment.