This is an automated email from the ASF dual-hosted git repository. bvahdat pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new c175296 bridgeEndpoint is a query parameter on the producer side c175296 is described below commit c17529661771c780e0e31ddd3559668ecd724512 Author: Babak Vahdat <bvah...@apache.org> AuthorDate: Thu Feb 13 20:59:45 2020 +0100 bridgeEndpoint is a query parameter on the producer side --- .../org/apache/camel/component/cxf/jaxrs/JettyCxfRsSpringRouter.xml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/camel-cxf/src/test/resources/org/apache/camel/component/cxf/jaxrs/JettyCxfRsSpringRouter.xml b/components/camel-cxf/src/test/resources/org/apache/camel/component/cxf/jaxrs/JettyCxfRsSpringRouter.xml index ecf21d8..7d8397e 100644 --- a/components/camel-cxf/src/test/resources/org/apache/camel/component/cxf/jaxrs/JettyCxfRsSpringRouter.xml +++ b/components/camel-cxf/src/test/resources/org/apache/camel/component/cxf/jaxrs/JettyCxfRsSpringRouter.xml @@ -40,8 +40,6 @@ </jaxrs:serviceBeans> </jaxrs:server> - <!-- bean id="jsonProvider" class="org.apache.cxf.jaxrs.provider.JSONProvider"/--> - <bean id="customerService" class="org.apache.camel.component.cxf.jaxrs.testbean.CustomerService" /> <!-- Defined the client endpoint to create the cxf-rs producer --> @@ -53,7 +51,7 @@ <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring" trace="true"> <route> <!-- Jetty server can be used to proxy the request to cxfrs client --> - <from uri="jetty://http://localhost:{{CXFTestSupport.port5}}/CxfRsRouterTest/route?matchOnUriPrefix=true&bridgeEndpoint=true"/> + <from uri="jetty://http://localhost:{{CXFTestSupport.port5}}/CxfRsRouterTest/route?matchOnUriPrefix=true"/> <to uri="cxfrs://bean://rsClient?ignoreDeleteMethodMessageBody=true"/> </route> </camelContext>