This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new e954aeb351d3 CAMEL-22662: camel-cxf - Add docs about HTTP transport
e954aeb351d3 is described below
commit e954aeb351d38d286d67079bd9cd5fa3c9fc4f0d
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Nov 7 09:47:21 2025 +0100
CAMEL-22662: camel-cxf - Add docs about HTTP transport
---
.../camel-cxf-soap/src/main/docs/cxf-component.adoc | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git
a/components/camel-cxf/camel-cxf-soap/src/main/docs/cxf-component.adoc
b/components/camel-cxf/camel-cxf-soap/src/main/docs/cxf-component.adoc
index 3665755c9752..2281db497b36 100644
--- a/components/camel-cxf/camel-cxf-soap/src/main/docs/cxf-component.adoc
+++ b/components/camel-cxf/camel-cxf-soap/src/main/docs/cxf-component.adoc
@@ -120,6 +120,20 @@ exchange property, `CamelCXFDataFormat`. The exchange key
constant is
defined in
`org.apache.camel.component.cxf.common.message.CxfConstants.DATA_FORMAT_PROPERTY`.
+== HTTP Transport
+
+When using CXF to host a SOAP-WS then CXF needs to integrate with an HTTP
server.
+
+When running in JEE application servers then a _Servlet_ transport can be used.
+When running in a Java standalone application then CXF has support for using
Jetty or Undertow.
+
+- cxf-rt-transports-http-jetty JAR
+- cxf-rt-transports-http-undertow JAR
+
+Using CXF with Spring Boot or Quarkus comes automatic integrated with the
embedded HTTP server.
+
+See more details in the https://cxf.apache.org/docs/http-transport.html[CXF
Transport] documentation.
+
== Usage
=== RAW Mode