设置useDefaultWebProxy =在WCF客户端的错误与Web引用(Set useDefa

2019-09-26 14:43发布

我有添加的Web引用到WCF服务的Windows窗体应用程序。 我需要WCF客户端属性“useDefaultWebProxy”为“假”的设置。

如果我添加了“服务参考”,而不是“网页引用”,我可以很容易地修改app.config文件:

<basicHttpBinding> 
  <binding name="pluto" ... useDefaultWebProxy="false"> 
   <readerQuotas ... /> 
   <security ...> 
    <transport ... /> 
    <message ... /> 
   </security> 
  </binding> 
 </basicHttpBinding> 

但我有在Web引用,我该怎么办?

Answer 1:

好吧,一个解决方案:

System.Net.WebRequest.DefaultWebProxy = MyWebClient.Proxy;
MyWebClient.MyFirstCall(username, password);

Pileggi



文章来源: Set useDefaultWebProxy=false on WCF Client with the Web-References