[Mono-list] FtpWebRequest works targeting .net, fails in mono 2.10.9

Aaron Oneal aaron.oneal at spicypixel.com
Fri Aug 2 17:33:29 UTC 2013


When and in what way does it fail? Do you receive an exception?

On Jul 30, 2013, at 6:31 AM, MikeN <mniemann at oowidgets.com> wrote:

> I have a simple FTP binary file upload, the code works fine in VS and Xamarin
> Studio if I target .net, but fails when I target mono 2.10.9 (or 2.6.7).
> [note: I have obscured the user credentials and IP address]
> 
> 	FtpWebRequest request =
> (FtpWebRequest)WebRequest.Create(@"ftp://xx.xx.xx.xx/Public/test.zip");
> 	//request.Proxy = null;
> 	request.Method = WebRequestMethods.Ftp.UploadFile;
> 	request.UseBinary = true;
> 	//request.UsePassive = true;
> 	//request.Timeout = -1;
> 	//request.KeepAlive = false;
> 	request.Credentials = new NetworkCredential("realuserid", "realpassword");
> 	// Copy the contents of the file to the request stream.
> 	byte[] fileContents = File.ReadAllBytes(@"c:\MikeN\test.zip");
> 	//sourceStream.Close();
> 	request.ContentLength = fileContents.Length;
> 	Stream requestStream = request.GetRequestStream();
> 	requestStream.Write(fileContents, 0, fileContents.Length);
> 	requestStream.Close();
> 	FtpWebResponse response = (FtpWebResponse)request.GetResponse();
> 	Console.WriteLine("Upload File Complete, status {0}",
> response.StatusDescription);
> 	response.Close();
> 
> Any guidance would be appreciated greatly.
> 
> MikeN



More information about the Mono-list mailing list