Gabriel Guimarães
Gabriel Guimarães

Reputation: 2744

Use a WebBrowser on a Script Task of SSIS

Hi I'm in need to download a file from a site that requires Forms Auth (through SSL) on a SSIS (SQL Server Integration Services 2008 R2) Script Task.

I'm currently using VB.NET with COM CreateObject("InternetExplorer.Application"), C# code is helping me also.

I've a few doubts,

  1. Is there a better wrapper library for webbrowser like using SELENIUM or WATIN?
  2. How do I perform a download with this browser control?

Any help is appreciated,

Gabriel Guimarães

Upvotes: 1

Views: 1418

Answers (1)

Santiago Cepas
Santiago Cepas

Reputation: 4094

You could use Watin. It has a very complete API and great documentation

Upvotes: 2

Related Questions