Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What SSIS task can be used to download files from an HTTPS URL?

I'm rathernew to SSIS and need some help creating an SSIS package that will connect to an HTTPS URL and download daily files with a naming convention like 2012-04-09.csv, 2012-04-08.csv and so on. Any suggestions on how to do this using a Web Service, XML, FTP or any other task would be much appreciated. Thank you!!

like image 880
JasonVL Avatar asked Oct 09 '22 04:10

JasonVL


1 Answers

I believe your best bet would be to use a custom script component to create your own.

This link shows you how to do it: http://microsoft-ssis.blogspot.pt/2011/05/download-source-file-from-website-with.html

like image 182
cfrag Avatar answered Oct 13 '22 10:10

cfrag