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 2023/06/07 15:59:19 UTC

[camel-quarkus] branch main updated (8869ae2a29 -> 7b30b3cc15)

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

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


    from 8869ae2a29 Fix formatting in the release guide
     new 6bf765ac80 Add ,subs="attributes+" to code snippets on CXF extension page so that {javaxOrJakartaPackagePrefix} gets resolved
     new 7b30b3cc15 Be more precise about the WS standards coverage on the CXF extension page

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc | 12 ++++++------
 extensions/cxf-soap/runtime/src/main/doc/usage.adoc        | 12 ++++++------
 2 files changed, 12 insertions(+), 12 deletions(-)


[camel-quarkus] 01/02: Add ,subs="attributes+" to code snippets on CXF extension page so that {javaxOrJakartaPackagePrefix} gets resolved

Posted by pp...@apache.org.
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 6bf765ac802dfcb02975242913b31f95133bb501
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Wed Jun 7 16:37:07 2023 +0200

    Add ,subs="attributes+" to code snippets on CXF extension page so that {javaxOrJakartaPackagePrefix} gets resolved
---
 docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc | 8 ++++----
 extensions/cxf-soap/runtime/src/main/doc/usage.adoc        | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc b/docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc
index 0d7dd0cd68..83406f5d38 100644
--- a/docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc
@@ -64,7 +64,7 @@ The CXF and `quarkus-cxf` versions are xref:user-guide/dependency-management.ado
 
 With `camel-quarkus-cxf-soap` (no additional dependencies required), you can use CXF clients as producers in Camel routes:
 
-[source,java]
+[source,java,subs="attributes+"]
 ----
 import org.apache.camel.builder.RouteBuilder;
 import {javaxOrJakartaPackagePrefix}.enterprise.context.ApplicationScoped;
@@ -103,7 +103,7 @@ public class CxfSoapClientRoutes extends RouteBuilder {
 
 The `CalculatorService` may look like the following:
 
-[source,java]
+[source,java,subs="attributes+"]
 ----
 import {javaxOrJakartaPackagePrefix}.jws.WebMethod;
 import {javaxOrJakartaPackagePrefix}.jws.WebService;
@@ -149,7 +149,7 @@ NOTE: `quarkus-cxf` supports {link-quarkus-cxf-doc}/user-guide/first-soap-client
 With `camel-quarkus-cxf-soap`, you can expose SOAP endpoints as consumers in Camel routes.
 No additional dependencies are required for this use case.
 
-[source,java]
+[source,java,subs="attributes+"]
 ----
 import org.apache.camel.builder.RouteBuilder;
 import {javaxOrJakartaPackagePrefix}.enterprise.context.ApplicationScoped;
@@ -214,7 +214,7 @@ NOTE: `quarkus-cxf` supports alternative ways of exposing SOAP endpoints.
 
 You can enable verbose logging of SOAP messages for both clients and servers with `org.apache.cxf.ext.logging.LoggingFeature`:
 
-[source,java]
+[source,java,subs="attributes+"]
 ----
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.cxf.ext.logging.LoggingFeature;
diff --git a/extensions/cxf-soap/runtime/src/main/doc/usage.adoc b/extensions/cxf-soap/runtime/src/main/doc/usage.adoc
index 24b68d6a6f..6bb205c899 100644
--- a/extensions/cxf-soap/runtime/src/main/doc/usage.adoc
+++ b/extensions/cxf-soap/runtime/src/main/doc/usage.adoc
@@ -13,7 +13,7 @@ The CXF and `quarkus-cxf` versions are xref:user-guide/dependency-management.ado
 
 With `camel-quarkus-cxf-soap` (no additional dependencies required), you can use CXF clients as producers in Camel routes:
 
-[source,java]
+[source,java,subs="attributes+"]
 ----
 import org.apache.camel.builder.RouteBuilder;
 import {javaxOrJakartaPackagePrefix}.enterprise.context.ApplicationScoped;
@@ -52,7 +52,7 @@ public class CxfSoapClientRoutes extends RouteBuilder {
 
 The `CalculatorService` may look like the following:
 
-[source,java]
+[source,java,subs="attributes+"]
 ----
 import {javaxOrJakartaPackagePrefix}.jws.WebMethod;
 import {javaxOrJakartaPackagePrefix}.jws.WebService;
@@ -97,7 +97,7 @@ NOTE: `quarkus-cxf` supports {link-quarkus-cxf-doc}/user-guide/first-soap-client
 With `camel-quarkus-cxf-soap`, you can expose SOAP endpoints as consumers in Camel routes.
 No additional dependencies are required for this use case.
 
-[source,java]
+[source,java,subs="attributes+"]
 ----
 import org.apache.camel.builder.RouteBuilder;
 import {javaxOrJakartaPackagePrefix}.enterprise.context.ApplicationScoped;
@@ -161,7 +161,7 @@ NOTE: `quarkus-cxf` supports alternative ways of exposing SOAP endpoints.
 
 You can enable verbose logging of SOAP messages for both clients and servers with `org.apache.cxf.ext.logging.LoggingFeature`:
 
-[source,java]
+[source,java,subs="attributes+"]
 ----
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.cxf.ext.logging.LoggingFeature;


[camel-quarkus] 02/02: Be more precise about the WS standards coverage on the CXF extension page

Posted by pp...@apache.org.
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 7b30b3cc15e88d6942cfb08ed4d4bc78406d4e66
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Wed Jun 7 16:42:37 2023 +0200

    Be more precise about the WS standards coverage on the CXF extension page
---
 docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc | 4 ++--
 extensions/cxf-soap/runtime/src/main/doc/usage.adoc        | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc b/docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc
index 83406f5d38..6669ee33bf 100644
--- a/docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc
@@ -272,7 +272,7 @@ NOTE: The support for `org.apache.cxf.ext.logging.LoggingFeature` is provided by
 
 The extent of supported WS specifications is given by the Quarkus CXF project.
 
-`camel-quarkus-cxf-soap` covers the following specifications via the `{link-quarkus-cxf-doc}/reference/extensions/quarkus-cxf.html[io.quarkiverse.cxf:quarkus-cxf]` extension:
+`camel-quarkus-cxf-soap` covers only the following specifications via the `{link-quarkus-cxf-doc}/reference/extensions/quarkus-cxf.html[io.quarkiverse.cxf:quarkus-cxf]` extension:
 
 * JAX-WS
 * JAXB
@@ -280,7 +280,7 @@ The extent of supported WS specifications is given by the Quarkus CXF project.
 * WS-Policy
 * MTOM
 
-If your application requires some other WS specification, you must add an additional Quarkus CXF dependency covering it.
+If your application requires some other WS specification, such as WS-Security or WS-Trust, you must add an additional Quarkus CXF dependency covering it.
 Refer to Quarkus CXF {link-quarkus-cxf-doc}/reference/index.html[Reference] page to see which WS specifications are covered by which Quarkus CXF extensions.
 
 TIP: Both {project-name} and Quarkus CXF contain a number of
diff --git a/extensions/cxf-soap/runtime/src/main/doc/usage.adoc b/extensions/cxf-soap/runtime/src/main/doc/usage.adoc
index 6bb205c899..875ef84709 100644
--- a/extensions/cxf-soap/runtime/src/main/doc/usage.adoc
+++ b/extensions/cxf-soap/runtime/src/main/doc/usage.adoc
@@ -218,7 +218,7 @@ NOTE: The support for `org.apache.cxf.ext.logging.LoggingFeature` is provided by
 
 The extent of supported WS specifications is given by the Quarkus CXF project.
 
-`camel-quarkus-cxf-soap` covers the following specifications via the `{link-quarkus-cxf-doc}/reference/extensions/quarkus-cxf.html[io.quarkiverse.cxf:quarkus-cxf]` extension:
+`camel-quarkus-cxf-soap` covers only the following specifications via the `{link-quarkus-cxf-doc}/reference/extensions/quarkus-cxf.html[io.quarkiverse.cxf:quarkus-cxf]` extension:
 
 * JAX-WS
 * JAXB
@@ -226,7 +226,7 @@ The extent of supported WS specifications is given by the Quarkus CXF project.
 * WS-Policy
 * MTOM
 
-If your application requires some other WS specification, you must add an additional Quarkus CXF dependency covering it.
+If your application requires some other WS specification, such as WS-Security or WS-Trust, you must add an additional Quarkus CXF dependency covering it.
 Refer to Quarkus CXF {link-quarkus-cxf-doc}/reference/index.html[Reference] page to see which WS specifications are covered by which Quarkus CXF extensions.
 
 TIP: Both {project-name} and Quarkus CXF contain a number of