orpiske commented on code in PR #15382: URL: https://github.com/apache/camel/pull/15382#discussion_r1739985080
########## 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: A bit of a nitpick, but ideally it should be on a separate commit, as it prevents us from cherry-picking the doc changes to 4.4.x if we would like to. -- 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