我正在使用 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>