I have problem with creating files on ftp from production server. Following code is working fine on my development server, but when I move my code to production server on site where I have bought hosting it gives error

Code

string fullname = Convert.ToString(TxtBx_FullName.Text);

if (FU_Img.HasFile)
{
    string ftpUrl = "";

    HttpPostedFile userPostFile = FU_Img.PostedFile;
    string uploadUrl = @"ftp://abc/upload/u" + fullname;
    string uploadFileName = Path.GetFileName(FU_Img.FileName);
    uploadFileName = "image." + uploadFileName.Split('.')[1];


    Stream streamObj = userPostFile.InputStream;
    Byte[] buffer = new Byte[userPostFile.ContentLength];
    streamObj.Read(buffer, 0, buffer.Length);
    streamObj.Close();
    streamObj = null;
    // FtpWebResponse CreateForderResponse;
    if (!GetAllFilesList(uploadUrl, "xyz", "******"))
    {
         FtpWebRequest ftp = (FtpWebRequest)FtpWebRequest.Create(uploadUrl);
         ftp.Method = WebRequestMethods.Ftp.MakeDirectory;
         ftp.Credentials = new NetworkCredential("xyz", "******");
         FtpWebResponse response = (FtpWebResponse)ftp.GetResponse();
    }
    //if (CreateForderResponse.StatusCode == FtpStatusCode.PathnameCreated)


    ftpUrl = string.Format("{0}/{1}", uploadUrl, uploadFileName);

    FtpWebRequest requestObj = FtpWebRequest.Create(ftpUrl) as FtpWebRequest;
    requestObj.KeepAlive = false;
    requestObj.UseBinary = true;
    requestObj.Method = WebRequestMethods.Ftp.UploadFile;
    requestObj.Credentials = new NetworkCredential("xxxx", "xxxxxx");

    Stream requestStream = requestObj.GetRequestStream(); <----- error
    requestStream.Write(buffer, 0, buffer.Length);
    requestStream.Flush();
    requestStream.Close();
    requestObj = null;

Error

stack trace

[WebException: The remote server returned an error: (550) File unavailable (e.g., file not found, no access).]
   System.Net.FtpWebRequest.SyncRequestCallback(Object obj) +341
   System.Net.FtpWebRequest.RequestCallback(Object obj) +23
   System.Net.CommandStream.Dispose(Boolean disposing) +19
   System.IO.Stream.Close() +20
   System.IO.Stream.Dispose() +10
   System.Net.ConnectionPool.Destroy(PooledStream pooledStream) +188
   System.Net.ConnectionPool.PutConnection(PooledStream pooledStream, Object owningObject, Int32 creationTimeout, Boolean canReuse) +118
   System.Net.FtpWebRequest.FinishRequestStage(RequestStage stage) +655
   System.Net.FtpWebRequest.GetRequestStream() +795
   MentorMentee.SignUp.signup.Btn_Preview_Click(Object sender, EventArgs e) +954
   System.EventHandler.Invoke(Object sender, EventArgs e) +0
   System.Web.UI.WebControls.Button.OnClick(EventArgs e) +9553178
   System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +103
   System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +35
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1724

What I found was to false the attribute KeepAlive, but did not work. Where I am going wrong?

有帮助吗?

解决方案

the following solution worked out for me.

private bool FtpUpload(FileUpload file, string ftpServer, string username, string ftpPass, string domainName = "")
    {
        // ftp://domain\user:password@ftpserver/url-path
        // If you are a member of a domain, then "ftp://domain-name\username:password@url-path" may fail because the backslash (\) is sent in as a literal character and Internet Explorer incorrectly looks for a file instead of parsing a Web address. Changing the backslash (\) in the domain-name\username to domainname%5Cusername works correctly.

        try
        {
            string ftpAddres;
            if (domainName != string.Empty)
                ftpAddres = "ftp://" + domainName + @"%5C" + username + ":" + ftpPass + "@" + ftpServer + "/" + file.FileName;
            else
                ftpAddres = "ftp://" + username + ":" + ftpPass + "@" + ftpServer + "/" + file.FileName;

            using (var webClient = new System.Net.WebClient())
            {
                webClient.UploadData(new Uri(ftpAddres), file.FileBytes);
            }

        }
        catch (Exception e)
        {
            throw new Exception(e.Message, e);
        }
        return true;
    }

Thanks to @Freelancer for the link you posted in comment.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top