旧的Exchange-2013服务器支持现代office加载项架构吗



我一直在互联网上浏览,寻找问题的答案。基本上,我们正在开发几个Office/Outlook插件。每个插件类型都是通过它们的清单安装的。

在现代系统中,在其清单中使用以下模式:

<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" 
xmlns:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0" xsi:type="MailApp">

对于较旧的系统,我们使用:

<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MailApp">

我想知道,如果我在旧系统上使用新的模式,它们是否会出现问题。

简而言之,Exchange 2013是否支持此架构声明?:

<<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" 
xmlns:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0" xsi:type="MailApp">

谢谢。

由于架构在Exchange 2013中的定义方式,带有mailappversionoverrides的清单应安装在最新的Exchange 2013 CU上。但是,Exchange2013没有使用或验证添加到清单中的最新架构的逻辑。这意味着,例如,Exchange 2013不会验证新节点,并且来自Exchange 2013的OWA不会使用清单中的新添加。另一方面,最近连接到Exchange2013的Outlook应该能够检索完整的清单。

请记住,某些功能和API需要同时支持Exchange和Outlook,因此这些功能无法与Exchange 2013一起使用。

另请参阅Exchange 2013生命周期:https://techcommunity.microsoft.com/t5/exchange-team-blog/exchange-server-2013-enters-extended-support-lifecycle-phase/ba-p/607811#:~:text=Exchange%20Server%202013%20进入%20Extended%20Support%20阶段,产品%20更新%20到期%20到%20时间%20zone%20定义%20更改。

最新更新