Hi,
I am using a C# console appliaction to FTP a file from Windows to Unix. Here i am using the following code :
* myUri is the URI for my Unix machine
I am getting an error of
System.Net.WebE xception : The remote name could not be resolved : 'myUri'
Kindly suggest some pointers in resolving the error.
Thanks in advance!
I am using a C# console appliaction to FTP a file from Windows to Unix. Here i am using the following code :
Code:
FtpWebRequest request = (FtpWebRequest)WebRequest.Create(myUri); request.Method = WebRequestMethods.Ftp.UploadFile;
I am getting an error of
System.Net.WebE xception : The remote name could not be resolved : 'myUri'
Kindly suggest some pointers in resolving the error.
Thanks in advance!
Comment