Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
In Talend desktop, there are triggers that execute based on the response of another workflow. Can you connect to SharePoint or Dropbox and save the file via a URL?
Greetings
Hello,
Talend Studio does not support saving or uploading files directly via a URL based on a trigger or workflow response.
To store files in external systems such as SharePoint or Dropbox, Talend must interact with those platforms through their supported APIs or connectors.
Recommended approach:
Generate the file locally (or in a temporary directory) within the job.
Use the appropriate method to upload the file:
SharePoint: Use REST API calls (for example via tRESTClient) or SharePoint-specific Talend components, depending on your license.
Dropbox: Use the Dropbox REST API with OAuth authentication.
Control execution flow using Talend triggers such as OnSubjobOK or OnComponentOK to handle success or failure.
Note:
Talend triggers manage job orchestration only. Writing to external storage systems always requires authenticated, API-based operations rather than direct URL writes.
Thanks,
Gourav