C# - FtpWebRequest - Multiple requests over the same connection/login

时光总嘲笑我的痴心妄想 提交于 2019-12-01 02:39:59

问题


I want to loop on a FTP folder for check if a file has arrived

I do:

FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://localhost:8080");
request.Credentials = new NetworkCredential("anonymous", "");
request.Method = WebRequestMethods.Ftp.ListDirectoryDetails;

while(true)
{
    using (FtpWebResponse response = (FtpWebResponse)request.GetResponse())
    using (Stream responseStream = response.GetResponseStream())
    using (StreamReader reader = new StreamReader(responseStream))
    {
        Console.WriteLine(reader.ReadToEnd());

        reader.Close();
        response.Close();
    }
}

But at the second iteration I get an exception:

The stream cannot be read


回答1:


Sorry, I missed it, you're only issuing one request and trying to get a response multiple times. Try the code below:

while(true)
{
    FtpWebRequest request =     (FtpWebRequest)WebRequest.Create("ftp://localhost:8080");
    request.Credentials = new NetworkCredential("anonymous", "");
    request.Method = WebRequestMethods.Ftp.ListDirectoryDetails;

    using (FtpWebResponse response = (FtpWebResponse)request.GetResponse())
    using (Stream responseStream = response.GetResponseStream())
    using (StreamReader reader = new StreamReader(responseStream))
    {
        Console.WriteLine(reader.ReadToEnd());

        reader.Close();
        response.Close();
    }
}

You should add a pause of some sort at the end of each loop though. You don't want to bombard the server.




回答2:


You cannot reuse the FtpWebRequest instance for multiple requests.

But as the FtpWebRequest works on top of a connection pool, it actually can reuse an underlying FTP connection. As long as the FtpWebRequest.KeepAlive is set to its default value of true.

When the KeepAlive is set to true, the underlying FTP connection is not closed, when the request finishes. When you create another instance of the FtpWebRequest with the same URL, the connection is reused.

while (true)
{
    FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://localhost:8080");
    request.Credentials = new NetworkCredential("anonymous", "");
    request.Method = WebRequestMethods.Ftp.ListDirectoryDetails;
    // reuse the connection (not necessary, as the true is the default)
    request.KeepAlive = true;

    using (FtpWebResponse response = (FtpWebResponse)request.GetResponse())
    using (Stream responseStream = response.GetResponseStream())
    using (StreamReader reader = new StreamReader(responseStream))
    {
        Console.WriteLine(reader.ReadToEnd());

        reader.Close();
        response.Close();
    }
}


来源:https://stackoverflow.com/questions/37635406/c-sharp-ftpwebrequest-multiple-requests-over-the-same-connection-login

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!