zoukankan      html  css  js  c++  java
  • Windows Live Writer 配置报407 Proxy Authentication Required错误

    在Windows 7 专业版上面安装Windows Live Writer后(版本号:14.0.8117.416),配置博客服务过程中报错(如下图所示)

    clipboard

    错误信息为:407 Proxy Authentication Required(The ISA Server requires authorization to fullfill the request. Access to the Web Proxy filter is denied)

    刚开始我怀疑是博客园的http://www.cnblogs.com/kerrycode/services/metaweblog.aspx服务认证问题,结果我在IE输入上面URL时,可以访问服务,后来在Google搜索了下,终于发现了问题的症结所在:由于机器使用Windows身份验证协议,Windows Live Writer无法连接到博客,因此当我们设置博客的服务时,就会报上述错误。解决方法如下所示:

    步骤1:首先找到你的Live Writer的安装目录,我的安装目录为:C:\Program Files (x86)\Windows Live ,然后找到Writer目录下的文件“WindowsLiveWriter.exe.config”

    <configuration>

         <startup>

        <supportedRuntime version="v2.0.50727"/>

      </startup>

      <runtime>

        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

          <probing PrivatePath="Plugins"/>

          <dependentAssembly>

            <assemblyIdentity

    name="WindowsLive.Writer.Api"

    publicKeyToken="31BF3856AD364E35" />

            <bindingRedirect oldVersion="1.0.0.0"

    newVersion="1.1.0.0" />

          </dependentAssembly>

        </assemblyBinding>

      </runtime>

    </configuration>

    步骤二:在WindowsLiveWriter.exe.config里面加上下面信息:

        <system.net>

             <defaultProxy enabled="true" useDefaultCredentials="true">    </defaultProxy>

         </system.net>

    如下所示:

    <configuration>

         <system.net>

             <defaultProxy enabled="true" useDefaultCredentials="true">    </defaultProxy>

         </system.net>

         <startup>

        <supportedRuntime version="v2.0.50727"/>

      </startup>

      <runtime>

        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

          <probing PrivatePath="Plugins"/>

          <dependentAssembly>

            <assemblyIdentity

    name="WindowsLive.Writer.Api"

    publicKeyToken="31BF3856AD364E35" />

            <bindingRedirect oldVersion="1.0.0.0"

    newVersion="1.1.0.0" />

          </dependentAssembly>

        </assemblyBinding>

      </runtime>

    </configuration>

    步骤3:重新启动Windows Live Writer,然后配置博客,问题解决。

    参考资料:

    http://www.zayblog.com/computer-and-it/2011/08/20/how-to-use-windows-live-writer-behind-authenticated-proxy/

    扫描上面二维码关注我
    如果你真心觉得文章写得不错,而且对你有所帮助,那就不妨帮忙“推荐"一下,您的“推荐”和”打赏“将是我最大的写作动力!
    本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接.
  • 相关阅读:
    关于线程池,那些你还不知道的事
    Java发送邮件
    原来实现项目多环境打包部署是如此的简单
    史上最全的maven的pom.xml文件详解
    Linux系统基础知识整理(一)
    计算机启动过程的简单介绍 计算机启动流程 计算机BIOS作用 POST 开机自检 计算机启动顺序 分区表 操作系统启动
    交换机工作原理、MAC地址表、路由器工作原理详解
    $(function(){})和$(document).ready(function(){}) 的区别
    关于RAM与ROM的区别与理解
    CDN的作用与基本过程
  • 原文地址:https://www.cnblogs.com/kerrycode/p/3050821.html
Copyright © 2011-2022 走看看