0

我有几个虚拟机。它们都具有桌面 WPF 应用程序和 Outlook 插件(基于 Add-in Express)。两者都使用 MIP SDK。今天,每次在 2 个 VM 上使用 MIP SDK 时,Outlook 加载项都开始出现错误。桌面应用程序仍然可以正常工作。

错误

App.ApplicationId: [xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx], Pii: [None]
App.ApplicationName: [xxxxxx xxxxxxxx], Pii: [None]
App.ApplicationVersion: [1.0.0], Pii: [None]
App.SessionId: [], Pii: [None]
Event.CorrelationId: [b695308b-46a7-4f0b-adac-000023309402], Pii: [None]
Event.CorrelationIdDescription: [PolicyProfile], Pii: [None]
Event.Duration: [0.331102], Pii: [None]
Event.ErrorType: [InternalError], Pii: [None]
Event.Failed.File: [src\upe\api_impl\policy_profile_impl.cpp], Pii: [None]
Event.Failed.Func: [mip::ProfileImpl::AddEngineAsync], Pii: [None]
Event.Failed.Line: [307], Pii: [None]
Event.Failed.Message: [Failed API call: profile_add_engine_async Failed with: [InternalError] Could not add new engine], Pii: [None]
Event.UniqueId: [cd70a16c-2dbd-4e2c-b98c-0000d16252d5], Pii: [None]
EventInfo.Level: [10], Pii: [None]
MIP.Version: [1.3.215], Pii: [None]

我试过了

  • 删除带有 MIP 缓存、日志记录等的存储文件夹
  • 重启虚拟机

但问题仍在发生。

我无法在互联网上找到任何东西。

有人有什么想法吗?

环境

  • 视窗 10 专业版 21H1
  • 微软办公专业增强版 2013
  • Outlook 15.0.5353.1000 32 位
  • Microsoft.InformationProtection.File NuGet 1.3.215
  • 未安装 AIP 客户端。

谢谢。

4

1 回答 1

0

经过一些测试,我们发现 Outlook 插件中的 ServicePointManager.SecurityProtocol 属性的值设置为 SSL3|Tls1。这些版本在 Windows 注册表中被禁用。

现在,我们刚刚添加了在运行时将 ServicePointManager.SecurityProtocol 设置为 1.2 的代码。

我们仍然不知道如何解释 ServicePointManager.SecurityProtocol 的这种值。

于 2021-09-16T10:21:32.063 回答