首页 > Web开发 > 详细

遇到 Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section的解决办法

时间:2016-09-08 18:06:25      阅读:491      评论:0      收藏:0      [点我收藏+]

用记事本编辑*.EXE.config,在“<system.net>”节点加入
<defaultProxy>
<proxy usesystemdefault="False" />
</defaultProxy>

完整的:

<?xml version="1.0"?>
<configuration>
  <system.net>
    <settings>
      <httpWebRequest useUnsafeHeaderParsing="true"/>
    </settings>
    <defaultProxy>
        <proxy usesystemdefault="False" />
    </defaultProxy>
  </system.net>
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v2.0.50727"/>
    <supportedRuntime version="v4.0"/>
  </startup>
</configuration>

-

遇到 Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section的解决办法

原文:http://www.cnblogs.com/runliuv/p/5853920.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!