You can make use of the namespace System.Net.WebClient
to make the Http request with the help of Script Task
in SSIS. Following example shows how this can be achieved. The example was created in SSIS 2008 R2
.
Step-by-step process:
Create a new SSIS package and create two variables namely RemoteUri and LocalFolder. Set the variable RemoteUri
with the value http://www.google.com/intl/en_com/images/srpr/logo1w.png
. this is the image url of the logo on the Google's home page. Set the variable LocalFolder
with the value C:emp
. this is the path where we are going to save the content. Refer screenshot #1.
On the SSIS package, place a Script Task
. Replace the Main() method within the script task with the code provided under the Script Task Code section. Refer screenshot #2.
Screenshot #3 shows that the path C:emp
is empty.
Screenshot #4 shows successful execution of the package.
Screenshot #5 shows that the content (in this case the logo image) has been downloaded to the local folder path.
Screenshot #6 shows that the code was tested to download a .zip file. To achieve this, the value of the variable RemoteUri was changed with the content url that needs to be downloaded.
Script task code:
C# code that can be used only in SSIS 2008 and above
.
public void Main()
{
Variables varCollection = null;
Dts.VariableDispenser.LockForRead("User::RemoteUri");
Dts.VariableDispenser.LockForRead("User::LocalFolder");
Dts.VariableDispenser.GetVariables(ref varCollection);
System.Net.WebClient myWebClient = new System.Net.WebClient();
string webResource = varCollection["User::RemoteUri"].Value.ToString();
string fileName = varCollection["User::LocalFolder"].Value.ToString() + webResource.Substring(webResource.LastIndexOf('/') + 1);
myWebClient.DownloadFile(webResource, fileName);
Dts.TaskResult = (int)ScriptResults.Success;
}
Screenshot #1:
Screenshot #2:
Screenshot #3:
Screenshot #4:
Screenshot #5:
Screenshot #6:
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…