在 WSE/SOAP Web 服务的配置与代码中指定代理
有没有办法在配置文件中指定 WSE3 代理而不是代码。 我想出了如何让它在代码中工作,如下所示:
valservice.Proxy = new System.Net.WebProxy("http://10.192.xx.xx:8080", true);
详细信息:我有一个 WCF 包装器 Web 服务,它正在调用 WSE3 外部供应商 Web 服务。当从表单调用时,WSE3 代码工作正常,但在 IIS 作为另一个 Web 服务运行时则不然。
Is there a way to specify a WSE3 proxy in the config file instead of code.
I figured out how to get it working in code as follows:
valservice.Proxy = new System.Net.WebProxy("http://10.192.xx.xx:8080", true);
Details: I have a WCF wrapper web service that is calling a WSE3 external vendor web service. The WSE3 code was working fine when called from a form, but not when running under IIS as another web service.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么您不能为此使用正常的应用程序设置?
请参阅示例。
Any reason why you cannot use the normal appSettings for this?
See an example here.