1

我正在使用 Web Services Enhancements 3.0 从使用 Visual Studio 2005 用 C# 编写的 ASP.NET 应用程序调用 Web 服务。

如果我将网络连接设置更改为使用特定的 SOCKS5 代理,我可以在 Internet Explorer 中调用 Web 服务,但是从 .ASPX 页面我收到一条错误消息,告诉我应该使用代理。

您知道如何配置 Web 服务客户端以使用代理吗?

谢谢

PS:

将以下内容添加到 Web.config 不起作用:

<system.net>
  <defaultProxy>
    <proxy proxyaddress="http://theproxy:8080" bypassonlocal="True" />
  </defaultProxy>
</system.net>
4

1 回答 1

0

您需要将 defaultProxy 元素的“启用”属性设置为“真”以使其工作:

<system.net>
  <defaultProxy **enabled="true"**>
    <proxy proxyaddress="http://theproxy:8080" bypassonlocal="True" />
  </defaultProxy>
</system.net>

这应该有效。

于 2008-12-19T10:24:08.973 回答