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

Croway pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot-examples.git


The following commit(s) were added to refs/heads/main by this push:
     new 447c6477 CAMEL-23696: Cxf spring-boot examples have 3 tests failing
447c6477 is described below

commit 447c647787cc3078dde26ff65928be9e78768b0c
Author: Saravanakumar Selvaraj <[email protected]>
AuthorDate: Mon Jun 8 20:01:32 2026 +0530

    CAMEL-23696: Cxf spring-boot examples have 3 tests failing
---
 soap-cxf/src/main/java/sample/camel/MyPojoRouteBuilder.java | 2 +-
 soap-cxf/src/main/java/sample/camel/MyWsdlRouteBuilder.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/soap-cxf/src/main/java/sample/camel/MyPojoRouteBuilder.java 
b/soap-cxf/src/main/java/sample/camel/MyPojoRouteBuilder.java
index 9f715414..5fd4e058 100644
--- a/soap-cxf/src/main/java/sample/camel/MyPojoRouteBuilder.java
+++ b/soap-cxf/src/main/java/sample/camel/MyPojoRouteBuilder.java
@@ -44,6 +44,6 @@ public class MyPojoRouteBuilder extends RouteBuilder {
        @Override
        public void configure() throws Exception {
                from("cxf:bean:contact")
-                               
.recipientList(simple("bean:inMemoryContactService?method=${header.operationName}"));
+                               
.recipientList(simple("bean:inMemoryContactService?method=${header.CamelCxfOperationName}"));
        }
 }
diff --git a/soap-cxf/src/main/java/sample/camel/MyWsdlRouteBuilder.java 
b/soap-cxf/src/main/java/sample/camel/MyWsdlRouteBuilder.java
index 85f7886b..44467450 100644
--- a/soap-cxf/src/main/java/sample/camel/MyWsdlRouteBuilder.java
+++ b/soap-cxf/src/main/java/sample/camel/MyWsdlRouteBuilder.java
@@ -64,7 +64,7 @@ public class MyWsdlRouteBuilder extends RouteBuilder {
        public void configure() throws Exception {
                // CustomerService is generated with cxf-codegen-plugin during 
the build
                from("cxf:bean:customers")
-                               
.recipientList(simple("direct:${header.operationName}"));
+                               
.recipientList(simple("direct:${header.CamelCxfOperationName}"));
 
                from("direct:getCustomersByName").process(exchange -> {
                        String name = exchange.getIn().getBody(String.class);

Reply via email to