When I try my program on my win2k8 machine it runs fine but on win 2k3 it gives me this error that error message

here's the code that' generating the error

WebClient wc = new WebClient(); 
wc.DownloadFile("ftp://ftp.website.com/sample.zip");

there's the weird part. if i disable the firewall on the server completely. the error goes away. but it still errors if i add the program to the exception list and turn on the firewall.

have search the web for days, couldn't find any solution.

link|improve this question
feedback

3 Answers

up vote 2 down vote accepted

You should try using passive mode for FTP. The WebClient class doesn't allow that, but FtpWebRequest does.

FtpWebRequest request = WebRequest.Create("ftp://ftp.website.com/sample.zip") as FtpWebRequest;
request.UsePassive = true;
FtpWebResponse response = request.GetResponse() as FtpWebResponse;
Stream ftpStream = response.GetResponse();
int bufferSize = 8192;
byte[] buffer = new byte[bufferSize];
using (FileStream fileStream = new FileStream("localfile.zip", FileMode.Create, FileAccess.Write))
{
    int nBytes;
    while((nBytes = ftpStream.Read(buffer, 0, bufferSize) > 0)
    {
        fileStream.Write(buffer, 0, nBytes);
    }
}
link|improve this answer
how do i use FtpWebRequest to download a file and save it to my local drive? I examples i found only show how to display server response. – chat May 17 '09 at 21:52
I can't post code in comments... I updated my answer – Thomas Levesque May 17 '09 at 22:43
what's nRead? i don't see that in your code. thanks – chat May 17 '09 at 23:43
it was a mistake, I meant nBytes... it's fixed now – Thomas Levesque May 18 '09 at 6:46
feedback

I had a similar issue (no ftp) and a different solution

The production server environment had been made so secure that the server could not reach the URL.

Quick test is to use a browser on the box and see if you can navigate to the url.

Hope this helps someone.

link|improve this answer
feedback

Please post the complete exception, including any InnerException:

try
{
    WebClient wc = new WebClient(); 
    wc.DownloadFile("ftp://ftp.website.com/sample.zip");
}
catch (Exception ex)
{
    Console.WriteLine(ex.ToString()); // Or Debug.Trace, or whatever
    throw;    // As if the catch were not present
}
link|improve this answer
InnerException is empty – chat May 17 '09 at 21:52
Post the whole thing anyway, for the stack trace. – John Saunders May 17 '09 at 22:22
feedback

Your Answer

 
or
required, but never shown