• 问题

今天突然发现本地软件不能访问网络. 包括:

印象笔记无法同步, 搜狗输入法无法登陆. 但其它上网正常.

  • 思路及解决过程

因为chrome上网 ,qq上网均正常. 且同事可以正常使用. 推测是本地网络原因.

想找到个网络监测工具(可以监测所有软件上网情况) --未找到合适的. 也推测是防火墙原因, 关闭防火墙仍不能访问.

此时, 通过evernote 活动日志发现了问题(对EverNote 此功能点赞 ) 看到日志如下:

16:01:21 [9640] 0% Connecting to www.evernote.com/edam/note/s277
16:01:21 [9640] 0% Loaded updateCount: 2313
16:01:21 [3432] Google Analytics: Failed to send event (error: Unknown error 0x800C0005)
16:01:22 [9640] 0% Can't send HTTP request, error: INTERNET_CANNOT_CONNECT
16:01:22 [9636] Client synchronization finished, status: failed
16:01:22 [9636] * error: Could not connect to Evernote service
16:01:22 [9636] * elapsed time: 1s 16:07:30 [1896] AutoUpdate: checking for update at: https://update.evernote.com/public/ENWin5/update.xml
16:07:32 [1896] Unable to send HTTP request: 12029
16:07:34 [3432] Google Analytics: Failed to send event (error: Unknown error 0x800C0005)

日志中, 1个是同步请求返回 INTERNET_CANNOT_CONNECT error. 另一个是检查更新, 返回: Unable to send HTTP request: 12029

google了 Unable to send HTTP request: 12029 , 结果第二条即为evernote论坛 此问题讨论(对google 的搜索结果再次点赞, 此时对比了百度同样的搜索 结果乱起八糟 根本找不到想要的答案).

在此帖子的回复中(洋文), 看到了网友对此问题的讨论, 找到了解决办法. 我也进行了相应回复(86层O(∩_∩)O~).

问题原因是: 针对日志中的请求 https://update.evernote.com/public/ENWin5/update.xml 通过chrome能访问, 但通过IE却无法访问. 问题在IE上面.

发现IE上网代理被修改了, 推测是之前使用翻墙软件搞的鬼,  去掉代理设置. 问题解决. 印象笔记同步成功. 搜狗输入法也可以显示登陆页了.

  • 总结
  1. 解决此问题耗费了1上午时间, 主要在思路上, 能找到错误的日志往往是第一步, 然后根据准确的日志去google(对于技术人员使用google应该成为习惯, 还不知道怎么访问google服务的请私信我, 请不要给我提百度), 往往可以找到满意的答案.
  2. 好的软件设计应该保证对错误处理有准确的日志记录, 这一点对于开发来说值得借鉴.
  3. 遇到问题, 不要急于乱解决, 先找到问题的原因, 准确定位是最重要的. 生活中的问题也如此--又扯远了...
												

印象笔记无法同步问题解决 Unable to send HTTP request: 12029的更多相关文章

  1. VMWare虚拟机实例拷贝到另一台服务器后出现Error in the RPC receive loop: RpcIn: Unable to send.错误的解决

    把一个VMWare虚拟机实例拷贝到另一台服务器后,在事件查看器中的应用程序日志中不断出现Error in the RPC receive loop: RpcIn: Unable to send.错误, ...

  2. Warning: Unable to send packet: Error with PF_PACKET send() [11]: Message too long (errno = 90)

    今天在使用tcpreplay重放流量时,发现有的数据包没有发送成功: Warning: Unable to send packet: Error with PF_PACKET send() [215] ...

  3. The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.

    The server is temporarily unable to service your request due to maintenance downtime or capacity pro ...

  4. windows上zend server安装 报The server encountered an internal error or misconfiguration and was unable to complete your request -解决方法 摘自网络

    windows上zend server安装完成后报如下错误:   Internal Server Error The server encountered an internal error or m ...

  5. Tomcat服务器提示:The server is temporarily unable to service your request due to maintenance downtime or capacity problems

    今天网站突然不能访问了,这里做一下记录提示: The server is temporarily unable to service your request due to maintenance d ...

  6. 'yii\base\InvalidRouteException' with message 'Unable to resolve the request "site/error".'

    引用:http://www.linuxidc.com/Linux/2015-02/114116.htm Yii2高级版本复制新项目会遇到下面的报错信息: exception 'yii\base\Inv ...

  7. 【MyEcplise】导入项目后,会定时弹出一下错误MyEcplise tern was unable to complete your request in time.This couble happen if your project contains several large javaScript libraies.

    Myecplise弹出错误如下: 错误代码: MyEcplise tern was unable to complete your request in time.This couble happen ...

  8. Unable to round-trip http request to upstream: EOF问题

    Unable to round-trip http request to upstream: EOF, 今天我用的phpstudy环境中的网站页面忽然打不开了,报错“Unable to round-t ...

  9. windows elasticsearch搭集群启动失败failed to send join request to master....

    创建几份elasticsearch副本,修改各自config\elasticsearch.yml配置文件: 第一份: #允许elasticsearch跨域访问,使用elasticsearch-head ...

随机推荐

  1. XCode帮助文档离线下载解决办法

    1.菜单栏Xcode->Preferences选择Documentation,在线下载 2.离线下载(用迅雷即可下载) 在上述在线下载列表中,点击某一列,下拉框可看见 info,可得到其网络所在 ...

  2. Python学习 之 switch语句

    1.python并没有提供switch语句,python可以通过字典实现switch语句的功能,实现方法分为两步 —首先,定义一个字典 —其次,调用字典的get()获取相应的表达式 通过字典调用函数 ...

  3. 高级I/O之异步I/O

    A synchronous I/O operation causes the requesting process to be blocked until that I/O operation com ...

  4. C#_自动化测试1_模拟post,get_12306火车票网站自动登录工具

    还记得2011年春运,12306火车票预订网站经常崩溃无法登录吗. 今天我们就开发一个12306网站自动登录软件. 帮助您轻松订票 通过前两篇博客Fiddler教程和HTTP协议详解,我们了解了Web ...

  5. sql server 2008 com.microsoft.sqlserver.jdbc.SQLServerException: 通过端口 1433 连接到主机

    右击我的电脑,点击管理 右击"TCP/IP"选择"属性"(或双击"TCP/IP"),选择"IP地址"选项卡,最下面有个& ...

  6. 手把手教你使用Size Class

    在 iOS8 中,我们不用再像以前那样,一个页面新建多个 xib 文件来适配不同类型的屏幕,现在我们可以把各种尺寸屏幕的适配工作放在一个文件中完成,然后可以通过不同类别的 Size 来定制各种尺寸的界 ...

  7. Ubuntu环境下配置Nginx

    /etc/nginx目录文件下: drwxr-xr-x   5 root root 4096 Apr 27 12:47 ./ drwxr-xr-x 104 root root 4096 Apr 27 ...

  8. vs中两张图片的融合

    这个其实就是从csdn上面下载的一个例程.感谢这位同学的总结,与源码的有偿分享. 本随笔就是把它通过4个随笔的拆分,实现的. 可以通过: http://blog.csdn.net/masibuaa/a ...

  9. 关于Merge的整理--AndroidScreenSlidePager开源库中用到的

    在做AndroidScreenSlidePager开源库练习demo的时候,发现布局文件使用的是<merge>标签而不是<FrameLayout>标签.作者给出的说法是:Cir ...

  10. BZOJ1975 [Sdoi2010]魔法猪学院

    本文版权归ljh2000和博客园共有,欢迎转载,但须保留此声明,并给出原文链接,谢谢合作. 本文作者:ljh2000 作者博客:http://www.cnblogs.com/ljh2000-jump/ ...