You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/06/30 07:20:56 UTC

[camel-examples] branch main updated: CAMEL-9627: camel-cxf splitup

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-examples.git


The following commit(s) were added to refs/heads/main by this push:
     new 7d763972 CAMEL-9627: camel-cxf splitup
7d763972 is described below

commit 7d7639722a5ec80b5da090b2b543661af177fde4
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Jun 30 09:20:47 2022 +0200

    CAMEL-9627: camel-cxf splitup
---
 examples/loan-broker-cxf/pom.xml                                    | 6 +++++-
 .../src/main/resources/META-INF/spring/webServiceCamelContext.xml   | 4 ++--
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/examples/loan-broker-cxf/pom.xml b/examples/loan-broker-cxf/pom.xml
index 2460c25c..b81c2411 100644
--- a/examples/loan-broker-cxf/pom.xml
+++ b/examples/loan-broker-cxf/pom.xml
@@ -66,7 +66,11 @@
         </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>
-            <artifactId>camel-cxf</artifactId>
+            <artifactId>camel-cxf-spring-soap</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-cxf-spring-transport</artifactId>
         </dependency>
         <dependency>
             <groupId>org.apache.cxf</groupId>
diff --git a/examples/loan-broker-cxf/src/main/resources/META-INF/spring/webServiceCamelContext.xml b/examples/loan-broker-cxf/src/main/resources/META-INF/spring/webServiceCamelContext.xml
index 3e885bd1..b04354ac 100644
--- a/examples/loan-broker-cxf/src/main/resources/META-INF/spring/webServiceCamelContext.xml
+++ b/examples/loan-broker-cxf/src/main/resources/META-INF/spring/webServiceCamelContext.xml
@@ -20,14 +20,14 @@
 <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:camel="http://camel.apache.org/schema/spring"
-       xmlns:cxf="http://camel.apache.org/schema/cxf"
+       xmlns:cxf="http://camel.apache.org/schema/cxf/jaxws"
        xmlns:jaxws="http://cxf.apache.org/jaxws"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="
          http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
          http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
          http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd
-         http://camel.apache.org/schema/cxf http://camel.apache.org/schema/cxf/camel-cxf.xsd
+         http://camel.apache.org/schema/cxf/jaxws http://camel.apache.org/schema/cxf/jaxws/camel-cxf.xsd
          http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
 
   <!-- spring property placeholder, ignore resource not found as the file resource is for unit testing -->