wcf客户端通过代理

时间:2010-08-31 14:42:50

标签: wcf proxy

干得好。 也许你有答案 我有一个客户端需要去我的服务,但他正在使用代理服务器,我有ssl连接问题。我已经阅读了很多答案,但最后我还需要使用什么?

<system.net>
  <defaultProxy useDefaultCredentials="true" >
  </defaultProxy>
</system.net> 

还是其他什么? 谢谢

1 个答案:

答案 0 :(得分:1)

在客户端配置中添加:

<defaultProxy useDefaultCredentials="true">
  <proxy bypassonlocal="True" proxyaddress="http://..." />
</defaultProxy>

并确保绑定具有useDefaultWebProxy =“true”(应该是默认值)。