davsclaus commented on code in PR #15382: URL: https://github.com/apache/camel/pull/15382#discussion_r1739616219
########## components/camel-spring-ws/src/main/java/org/apache/camel/component/spring/ws/SpringWebserviceComponent.java: ########## @@ -75,20 +75,19 @@ private void addConsumerConfiguration( if (type != null) { LOG.debug("Building Spring Web Services consumer of type {}", type); String lookupKey = getLookupKey(remaining, type); + configuration.setEndpointMappingType(type); + configuration.setEndpointMappingLookupKey(lookupKey); if (EndpointMappingType.BEANNAME.equals(type)) { addEndpointDispatcherToConfiguration(configuration, lookupKey); } else { addEndpointMappingToConfiguration(parameters, configuration); + if (type.equals(EndpointMappingType.XPATHRESULT)) { Review Comment: it seem this code is moved into this else block which was not the case before. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org