jbonofre commented on a change in pull request #4514: URL: https://github.com/apache/camel/pull/4514#discussion_r539038308
########## File path: components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/DefaultCompositeApiClient.java ########## @@ -93,6 +93,35 @@ public DefaultCompositeApiClient(final SalesforceEndpointConfig configuration, f xStreamCompositeTree.alias("SObjectTreeResponse", SObjectTreeResponse.class); } + public void submitCompositeRaw( + final InputStream raw, final Map<String, List<String>> headers, + final ResponseCallback<InputStream> callback, + final String sObjectName, final String extId, String compositeMethod) + throws SalesforceException { + checkCompositeFormat(format, SObjectComposite.REQUIRED_PAYLOAD_FORMAT); + + final String url = String.format("%s%s/%s/%s/%s", versionUrl(), "composite", "sobjects", sObjectName, extId); + + System.out.println("URL: " + url); Review comment: +1 (was debugging) ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org