The message filter indicated that the application is busy. (Exception from HRESULT: 0x8001010A (RPC_

Posted Andy·Li

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了The message filter indicated that the application is busy. (Exception from HRESULT: 0x8001010A (RPC_相关的知识,希望对你有一定的参考价值。

消息筛选器显示应用程序正在使用中。 ((错误来自 HRESULT:0x8001010A (RPC_E_SERVERCALL_RETRYLATER)) 

在对Word文档进行合并或者其他操作的时候,如果数据量比较少,没有异常;如果数据量加大,

偶尔会抛出标题的那种错误,错误原因分析以及解决方案如下:

 

错误原因分析:

Word会对文本进行拼写错误检查,如果错误过多或者有错误,可能会出现弹框,这种弹框在后台处理Word文档是致命的。

 

解决方案:

应该在打开Word文档的代码中添加阻止拼写验证和拼写弹框:如下

 _doc = Open(templateFileName);

_doc.SpellingChecked = false;  

_doc.ShowSpellingErrors = false;  

 

或者在服务器上对Word进行设置,步骤如下:

首先在服务器上打开一个word文档,在菜单栏上点击File,然后点击Options,如图:

 

 

接下来出现的对话框中点击左侧的Proffing如下图:

 

 

在右侧的When correcting spelling and grammar in Word 标题栏下,取消已选中的选项,如下图:

 

 

然后点击 OK,打完收工。

 

以上是关于The message filter indicated that the application is busy. (Exception from HRESULT: 0x8001010A (RPC_的主要内容,如果未能解决你的问题,请参考以下文章

RocketMQ 错误:The broker does not support consumer to filter message by SQL92

百度LBS云搜索时报错 "filter:area is not filteable field, please set property in the cloud-storage(示

django中使用filter()(即对QuerySet操作)时踩的坑

The request included a message larger than the max message size the server will accept.

The request included a message larger than the max message size the server will accept.

ROS学习笔记之——message filters的应用