2

I want to download some files from Website URL using SSIS package or c# code

But the problem is that website is buildup using flash and i need to login first then only I can go to homapage from where I need to download 4-5 pdf files

please help ?

Neo
  • 15,491
  • 59
  • 215
  • 405

1 Answers1

1

Have a look at this. How to make an HTTP request from SSIS? You need to use the exact PDF download url. As long as the file is not restricted by authentication, you should be able to download it.

To pass credentials, look at the Credentials property available in the namespace System.Net.WebClient

WebClient Class

WebClient.Credentials Property

Community
  • 1
  • 1
  • Thanks But i need to first login into website is there any way to pass credentials too? – Neo Sep 02 '11 at 14:12