I'm trying to create a job which can download several files via HTTP. The list of these files is in a MySQL table. I create a main job with these steps in line: start, set variables, FILELIST (a transformation that I created), DOWNLOAD (a job that i've created) and success.
The transformation FILELIST contains the following steps: table input and copy rows to result (this transformation communicates with the database and gives the list of URLs to the main task). The task DOWNLOAD contains the following steps: start, http, success (this task should download files to my computer).
All this doesn't work, why? Does anybody know a better way to do the same thing?