码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2016-09-08 18:08:16      阅读:679      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!