通过代理调用 WSE Web 服务
我正在使用 Web 服务增强 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>
I'm using Web Services Enhancements 3.0 to call a web-service from an ASP.NET application written in C# with Visual Studio 2005.
I can call the web-service in Internet Explorer if I change the network connection settings to use a specific SOCKS5 proxy but from the .ASPX page I get an error message that tells me that I should be using the proxy.
Do you know how to configure the web-service client to use the proxy?
Thanks
PS:
Adding the following to Web.config doesn't work:
<system.net>
<defaultProxy>
<proxy proxyaddress="http://theproxy:8080" bypassonlocal="True" />
</defaultProxy>
</system.net>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将 defaultProxy 元素的“enabled”属性设置为“true”才能使其工作:
这应该可以工作。
You need to set "enabled" attribute of defaultProxy element to "true" to make it work:
This should work.