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

[camel-spring-boot] branch main updated: [CAMEL-18729]update WSAContextUtils.DECOUPLED_ENDPOINT_BASE_PROPERTY in the WSRMTest

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

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


The following commit(s) were added to refs/heads/main by this push:
     new c38b36b45dd [CAMEL-18729]update WSAContextUtils.DECOUPLED_ENDPOINT_BASE_PROPERTY in the WSRMTest
c38b36b45dd is described below

commit c38b36b45dd345800db743e14ed6d131bfc09b5f
Author: Freeman Fang <fr...@gmail.com>
AuthorDate: Thu Dec 8 12:27:38 2022 -0500

    [CAMEL-18729]update WSAContextUtils.DECOUPLED_ENDPOINT_BASE_PROPERTY in the WSRMTest
---
 .../org/apache/camel/component/cxf/soap/springboot/wsrm/WSRMTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components-starter/camel-cxf-soap-starter/src/test/java/org/apache/camel/component/cxf/soap/springboot/wsrm/WSRMTest.java b/components-starter/camel-cxf-soap-starter/src/test/java/org/apache/camel/component/cxf/soap/springboot/wsrm/WSRMTest.java
index 2c11e7a6632..5d99fcf9885 100644
--- a/components-starter/camel-cxf-soap-starter/src/test/java/org/apache/camel/component/cxf/soap/springboot/wsrm/WSRMTest.java
+++ b/components-starter/camel-cxf-soap-starter/src/test/java/org/apache/camel/component/cxf/soap/springboot/wsrm/WSRMTest.java
@@ -115,7 +115,7 @@ public class WSRMTest {
         Client client = ClientProxy.getClient(helloWorld);
         String decoupledEndpoint = "/wsrm/decoupled_endpoint";
         client.getBus().setProperty(WSAContextUtils.DECOUPLED_ENDPOINT_BASE_PROPERTY, 
-                                       "http://localhost:" + port + "/services/wsrm/decoupled_endpoint");
+                                       "http://localhost:" + port + "/services");
         HTTPConduit hc = (HTTPConduit)(client.getConduit());
         HTTPClientPolicy cp = hc.getClient();
         cp.setDecoupledEndpoint(decoupledEndpoint);