gpt4 book ai didi

c# - 在 C# 中显示代理身份验证对话框

转载 作者:太空狗 更新时间:2023-10-29 20:25:43 26 4
gpt4 key购买 nike

为了访问互联网,我使用了需要身份验证的代理。我知道像这样将网络凭据传递给代理非常简单:

FtpWebRequest request = FtpWebRequest.Create(
new Uri("ftp://upload.myserver.com") as FtpWebRequest;

NetworkCredential credentials = new NetworkCredential("username", "password");
request.Credentials = credentials;

这有效!

我也尝试过使用 CredentialCache.DefaultNetworkCredentials 但这不起作用。我想避免在任何地方(代码、数据库、配置文件)存储用户名和密码。

我认为最简单的方法是使用当我使用 Internet Explorer 访问 Internet 时显示的相同对话框。有人知道如何提出这个对话吗?

http://services.arcgisonline.com/arcgisexplorer500/help/proxy_connect_to_on_browser_request.png

编辑

此任务的目标是通过 FTP 上传文件。最后我发现没有必要为 FTP 请求设置代理,因为 .NET 框架不允许通过 HTTP 代理进行 FTP 操作。但是您必须将代理属性显式设置为 null。

FtpWebRequest request = FtpWebRequest.Create(
new Uri("ftp://upload.myserver.com") as FtpWebRequest;

NetworkCredential credentials = new NetworkCredential("username", "password");
request.Credentials = credentials;
request.Proxy = null;

就是这样!

最佳答案

在 MSDN 文章“Handling Authentication”中,作者写道:

Proxy Authentication

When a client attempts to use a proxy that requires authentication, the proxy returns a 407 status code message to the client. In that message, the proxy should include one or more Proxy-Authenticate response headers. These headers include the authentication methods available from the proxy. WinINet chooses the first method it recognizes.

The InternetErrorDlg function can be used to obtain the user name and password data from the user, or a customized user interface can be designed.

稍稍搜索后,我找到了 Microsoft 知识库文章“How To Handle Proxy Authorization with WinInet”,其中举例说明了如何使用此功能对代理用户进行身份验证。

他们提供了一个 (C++) 示例代码:

if ( InternetErrorDlg (GetDesktopWindow(),
hReq, ERROR_INTERNET_INCORRECT_PASSWORD,
FLAGS_ERROR_UI_FILTER_FOR_ERRORS |
FLAGS_ERROR_UI_FLAGS_GENERATE_DATA |
FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS,
NULL) == ERROR_INTERNET_FORCE_RETRY)
goto again;

(有关 InternetErrorDlg 函数的 P/Invoke 示例,请参见 this MSDN blog post)。

“处理身份验证”一文进一步指出:

A custom interface can use the InternetSetOption function to set the INTERNET_OPTION_PROXY_PASSWORD and INTERNET_OPTION_PROXY_USERNAME values and then resend the request to the proxy.

所以我假设以下“工作流程”可以成功:

  1. 将代理设置为使用默认代理,类似 request.Proxy = WebRequest.GetSystemWebProxy() .
  2. 使用 HttpWebRequest(或 FtpWebRequest)请求 URL。
  3. 如果返回 407 HTTP 状态码,则调用 InternetErrDlg 函数。
  4. 重试 URL 请求。

this answer 以来,这可以工作声明他最近刚刚打开 Internet Explorer 并在其中输入他的代理凭据时成功使用了 WebRequest

所以我的假设是,只要用户登录,代理信息就存储在 Windows“用户 session ”中的某个位置,并且在身份验证后可供所有应用程序使用。

由于我面临着与原始发帖人相同的问题,我现在将尝试看看我的建议是否有效。

关于c# - 在 C# 中显示代理身份验证对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4204677/

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