vote up 0 vote down star

Here's what's going on. I'm opening a file on FTP that exists using a WebClient. The file exists and the function has worked in the past, but now for some reason throws an exception. (System.Net.WebException: The remote server returned an error: (550) File unavailable (e.g., file not found, no access).). The funny thing is, the script still opens the file and does what it's supposed to. Has anyone ever heard of anything like this?

WebClient downloadRequest = new WebClient();
downloadRequest.Credentials = new NetworkCredential(pusername, ppassword);
byte[] downloadBytes = downloadRequest.DownloadData(purl);

Here's the stack trace:

[WebException: The remote server returned an error: (550) File unavailable (e.g., file not found, no access).]
System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& request) +287
System.Net.WebClient.DownloadData(Uri address) +106
System.Net.WebClient.DownloadData(String address) +29
ftp_connect.copyFile(String purl, String pusername, String ppassword, String pubordev) in d:\wwwdev\test\ftp\ftpconnect.aspx.cs:112
ftp_connect.copyFolder(String purl, String pusername, String ppassword, String pubordev) in d:\wwwdev\test\ftp\ftpconnect.aspx.cs:160
ftp_connect.Page_Load(Object sender, EventArgs e) in d:\wwwdev\test\ftp\ftpconnect.aspx.cs:93
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35
System.Web.UI.Control.OnLoad(EventArgs e) +99
System.Web.UI.Control.LoadRecursive() +50
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
flag

67% accept rate
Is the exception being thrown from .NET Framework code, or your code? – Richard Hein Jul 30 at 16:42
Need a stack trace. – Richard Hein Jul 30 at 16:43
I'm not sure where it's being thrown from. I'm pretty sure it's my code, but this worked before so I'm not sure. I've attached the stack trace. – Reactor5 Jul 30 at 16:48
Run it in debugging. Step through one line at a time, checking if the output is there. You'll figure out what is happening pretty fast. – Brian Jul 30 at 17:17

4 Answers

vote up 0 vote down check

It turns out that I was calling a function which called the function I was trying to get to.

So, the solution I guess was to look at the stack. Should have done that first.

link|flag
vote up 0 vote down

Maybe the file is in user by some other client/user.

link|flag
vote up 0 vote down

The script might be using a version of the file saved when the Web request was still working.

link|flag
vote up 0 vote down

Presumably the file is there from a previous successful run?

link|flag
The file is being copied from one server to another. (an intranet to the outside). The files on the intranet exist. – Reactor5 Jul 30 at 16:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.