You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2022/12/08 20:46:10 UTC

[camel-quarkus] 01/02: Regenerate the JMS doc page

This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit cb0fbba1e0f7a5ba10ead94eee2322978325180d
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Thu Dec 8 15:30:29 2022 +0100

    Regenerate the JMS doc page
---
 docs/modules/ROOT/pages/reference/extensions/jms.adoc | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/docs/modules/ROOT/pages/reference/extensions/jms.adoc b/docs/modules/ROOT/pages/reference/extensions/jms.adoc
index ff326d7149..05c10380a7 100644
--- a/docs/modules/ROOT/pages/reference/extensions/jms.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/jms.adoc
@@ -59,10 +59,11 @@ you must ensure that the `camel-quarkus-xml-jaxp` extension is present on the cl
 When sending JMS message payloads as `javax.jms.ObjectMessage`, you must annotate the relevant classes to be registered for serialization with `@RegisterForReflection(serialization = true)`. 
 Note that this extension automatically sets `quarkus.camel.native.reflection.serialization-enabled = true` for you. Refer to the xref:user-guide/native-mode.adoc#serialization[native mode user guide] for more information.
 
-[id="extensions-jms-usage-pooling-and-xa-integrate-support"]
-=== Pooling and XA integrate support
+[id="extensions-jms-usage-support-for-connection-pooling-and-x-open-xa-distributed-transactions"]
+=== Support for Connection pooling and X/Open XA distributed transactions
 
-You can use the `quarkus-pooled-jms` extension to get pooling and XA integrate support for JMS connections. Refer to the https://quarkiverse.github.io/quarkiverse-docs/quarkus-pooled-jms/dev/index.html[quarkus-pooled-jms] extension documentation for more information. Currently, it only works with `quarkus-artemis-jms` extension. Just add these two dependencies to your `pom.xml`:
+You can use the `quarkus-pooled-jms` extension to get pooling and XA support for JMS connections. Refer to the https://quarkiverse.github.io/quarkiverse-docs/quarkus-pooled-jms/dev/index.html[quarkus-pooled-jms] extension documentation for more information.
+Currently, it only works with `quarkus-artemis-jms` extension. Just add these two dependencies to your `pom.xml`:
 [source,xml]
 ----
 <dependency>
@@ -75,7 +76,9 @@ You can use the `quarkus-pooled-jms` extension to get pooling and XA integrate s
 </dependency>
 ----
 
-Pooling is default enabled and for XA integrate support, you need to add the following configuration to your `application.properties`:
+Note that pooling is enabled by default.
+
+To enable XA, you need to add the following configuration to your `application.properties`:
 [source,properties]
 ----
 quarkus.pooled-jms.xa.enabled=true