So I there wasnt a visual J# forum on this site, so I figured that C# was the closest to it, so I posted in here thinking that some1 might somewhat familiar with J#. I am trying to download a file off of an ftp server using WebClient.Here is my code....
WebClient request = new WebClient();
Uri newuri=new Uri("ftp://ftp.fedex.com/pub/us/rates/downloads/documents2/Ground.txt");
String pathname="C:\\Documents and Settings\\2346298\\My
Documents\\Visual Studio 2005\\Projects\\ShippCalculator\\ShippCalculator\\Ground.txt";
request.DownloadFile(newuri,pathname);
When I compile and run I get an exception saying...
"System.Net.WebException: The underlying connection was closed: An unexpcted error occured on a recieve."
I am not sure how to fix this... I hope someone can help me out here