远程服务器返回错误407代理身份验证所需

时间:2018-03-07 04:18:06

标签: web-services authentication proxy http-status-code-407

当我在C#中调用Web服务时出现此错误:“远程服务器返回错误:(407)需要代理验证”。我引用了一些主题,但问题没有修复。

在调用ws函数之前,我已经添加了我的.cs代码:

WebProxy proxy = new WebProxy("http://doamin:9001", true);
proxy.Credentials = new NetworkCredential("user", "pass");
WebRequest.DefaultWebProxy = proxy;

在配置中,我添加了<configuration>标记:

<system.net>
<defaultProxy useDefaultCredentials="true" >
<proxy usesystemdefault="False"
proxyaddress="http://doamin:9001"
bypassonlocal="True"
autoDetect="False" />
</defaultProxy>
</system.net>

添加了一些代码后,我又得到了一个错误:“远程服务器返回错误403禁止”。 请帮助我或就此问题给我一些建议。 感谢。

0 个答案:

没有答案