gpt4 book ai didi

c# - FtpWebRequest 在之前使用正确密码成功连接后忽略错误密码

转载 作者:行者123 更新时间:2023-11-30 16:42:17 27 4
gpt4 key购买 nike

我在使用 C# 中的 FtpWebRequest 类时遇到了问题。

当我第一次尝试使用正确的凭据将文件上传到 FTP 服务器,然后第二次使用错误的凭据(用户名相同但密码错误)时,没有抛出异常并且文件仍然已上传到 FTP 服务器。请考虑以下代码:

using System;
using System.Net;

internal class Program
{
private static void Main(string[] args)
{
var uri = new Uri("ftp://ftp.dlptest.com/TestFile.txt");
var method = WebRequestMethods.Ftp.UploadFile;

//Here I'm uploading the test file using correct credentials
var correctCredentials =
new NetworkCredential("dlpuser@dlptest.com", "fwRhzAnR1vgig8s");
DoFtpRequest(uri, correctCredentials, method);

//Here I'm uploading the test file using wrong credentials.
//I expect some exception to be thrown and the file not being
//uploaded to the server, neither is the case.
var wrongCredentials =
new NetworkCredential("dlpuser@dlptest.com", "WRONG_PASWORD");
DoFtpRequest(uri, wrongCredentials, method);
}

public static FtpWebResponse DoFtpRequest(
Uri uri, NetworkCredential credentials, string method)
{
var request = (FtpWebRequest)WebRequest.Create(uri);
request.Credentials = credentials;
request.Method = method;
return (FtpWebResponse)request.GetResponse();
}
}

我在这里使用公共(public) ftp 服务器 ftp://ftp.dlptest.com/ 我在这里找到 https://dlptest.com/ftp-test/您可以使用它来测试此代码。

正如您首先看到的,我尝试上传一个具有正确凭据的文件,然后使用错误的凭据(使用相同的用户名但更改密码)上传。但是文件仍然上传到服务器。如果我首先尝试使用错误的凭据,则会抛出异常,一切都会按预期进行。

你知道这是怎么回事吗?这是框架的错误吗?我有什么选择来处理这个问题,因为它会导致我现在正在处理的程序出现问题?

最佳答案

FtpWebRequest 在底层使用连接池。参见 FTP multiple files in C# without reestablishing connection .

该连接池的键只有主机名、端口号、用户名和可选的连接组名称。


您的第二个请求重用了第一个请求的连接并且从不使用错误的密码。这是因为这两个请求使用相同的连接池,因为它们仅密码不同,密码不是 key 的一部分。

而如果交换请求,第一个请求不会成功,它的连接会关闭并且不会进入池。第二个请求必须从一个新连接开始,并且它将使用正确的密码。


要隔离请求,您可以:

关于c# - FtpWebRequest 在之前使用正确密码成功连接后忽略错误密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47095380/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com