【转】Apache与Tomcat的三种连接方式介绍

本文介绍了Apache与Tomcat整合的三种方式:JK、http_proxy和ajp_proxy,重点讲解了JK的配置方法及其优势,包括提升静态文件处理性能、负载均衡及容错等关键功能。

首先我们先介绍一下为什么要让Apache与Tomcat之间进行连接。事实上Tomcat本身已经提供了HTTP服务,该服务默认的端口是8080,装好tomcat后通过8080端口可以直接使用Tomcat所运行的应用程序,你也可以将该端口改为80。
既然Tomcat本身已经可以提供这样的服务,我们为什么还要引入Apache或者其他的一些专门的HTTP服务器呢?原因有下面几个:
1. 提升对静态文件的处理性能
2. 利用Web服务器来做负载均衡以及容错
3. 无缝的升级应用程序
这三点对一个web网站来说是非常之重要的,我们希望我们的网站不仅是速度快,而且要稳定,不能因为某个Tomcat宕机或者是升级程序导致用户访问不了,而能完成这几个功能的、最好的HTTP服务器也就只有apache的http server了,它跟tomcat的结合是最紧密和可靠的。
接下来我们介绍三种方法将apache和tomcat整合在一起。

一. JK               
这是最常见的方式,你可以在网上找到很多关于配置JK的网页,当然最全的还是其官方所提供的文档。JK本身有两个版本分别是1和2,目前1最新的版本是1.2.19,而版本2早已经废弃了,以后不再有新版本的推出了,所以建议你采用版本1。
JK是通过AJP协议与Tomcat服务器进行通讯的,Tomcat默认的AJPConnector的端口是8009。JK本身提供了一个监控以及管理的页面jkstatus,通过jkstatus可以监控JK目前的工作状态以及对到tomcat的连接进行设置,如下图所示
               
在这个图中我们可以看到当前JK配了两个连接分别到8109和8209端口上,目前s2这个连接是停止状态,而s1这个连接自上次重启后已经处理了47万多个请求,流量达到6.2个G,最大的并发数有13等等。我们也可以利用jkstatus的管理功能来切换JK到不同的Tomcat上,例如将s2启用,并停用s1,这个在更新应用程序的时候非常有用,而且整个切换过程对用户来说是透明的,也就达到了无缝升级的目的。关于JK的配置文章网上已经非常多了,这里我们不再详细的介绍整个配置过程,但我要讲一下配置的思路,只要明白了配置的思路,JK就是一个非常灵活的组件。
JK的配置最关键的有三个文件,分别是
httpd.conf  
Apache服务器的配置文件,用来加载JK模块以及指定JK配置文件信息
workers.properties
到Tomcat服务器的连接定义文件
uriworkermap.properties  
URI映射文件,用来指定哪些URL由Tomcat处理,你也可以直接在httpd.conf中配置这些URI,但是独立这些配置的好处是JK模块会定期更新该文件的内容,使得我们修改配置的时候无需重新启动Apache服务器。
其中第二、三个配置文件名都可以自定义。下面是一个典型的 httpd.conf 对JK的配置
# (httpd.conf)
# 加载mod_jk模块
LoadModule jk_module modules/mod_jk.so
#
# Configure mod_jk
#               
JkWorkersFile conf/workers.properties
JkMountFile conf/uriworkermap.properties
JkLogFile logs/mod_jk.log
JkLogLevel warn        
        
接下来我们在Apache的conf目录下新建两个文件分别是 workers.properties、uriworkermap.properties。这两个文件的内容大概如下
#
# workers.properties
#        
# list the workers by name        

worker.list=DLOG4J, status        

# localhost server 1
# ------------------------
worker.s1.port=8109
worker.s1.host=localhost
worker.s1.type=ajp13
# localhost server 2
# ------------------------
worker.s2.port=8209
worker.s2.host=localhost
worker.s2.type=ajp13
worker.s2.stopped=1        

worker.DLOG4J.type=lb
worker.retries=3
worker.DLOG4J.balanced_workers=s1, s2
worker.DLOG4J.sticky_session=1        
worker.status.type=status

以上的workers.properties配置就是我们前面那个屏幕抓图的页面所用的配置。首先我们配置了两个类型为ajp13的worker分别是 s1和s2,它们指向同一台服务器上运行在两个不同端口8109和8209的Tomcat上。接下来我们配置了一个类型为lb(也就是负载均衡的意思)的 worker,它的名字是DLOG4J,这是一个逻辑的worker,它用来管理前面配置的两个物理连接s1和s2。最后还配置了一个类型为status 的worker,这是用来监控JK本身的模块。有了这三个worker还不够,我们还需要告诉JK,哪些worker是可用的,所以就有 worker.list = DLOG4J, status 这行配置。
接下来便是URI的映射配置了,我们需要指定哪些链接是由Tomcat处理的,哪些是由Apache直接处理的,看看下面这个文件你就能明白其中配置的意义。
/*=DLOG4J
/jkstatus=status        
!/*.gif=DLOG4J
!/*.jpg=DLOG4J
!/*.png=DLOG4J
!/*.css=DLOG4J
!/*.js=DLOG4J
!/*.htm=DLOG4J
!/*.html=DLOG4J
        
相信你已经明白了一大半了:所有的请求都由DLOG4J这个worker进行处理,但是有几个例外,/jkstatus请求由status这个 worker处理。另外这个配置中每一行数据前面的感叹号是什么意思呢?感叹号表示接下来的URI不要由JK进行处理,也就是Apache直接处理所有的图片、css文件、js文件以及静态html文本文件。
通过对workers.properties和uriworkermap.properties的配置,可以有各种各样的组合来满足我们前面提出对一个web网站的要求。您不妨动手试试!

二. http_proxy               
这是利用Apache自带的mod_proxy模块使用代理技术来连接Tomcat。在配置之前请确保是否使用的是2.2.x版本的Apache服务器。因为2.2.x版本对这个模块进行了重写,大大的增强了其功能和稳定性。
http_proxy模式是基于HTTP协议的代理,因此它要求Tomcat必须提供HTTP服务,也就是说必须启用Tomcat的HTTP Connector。一个最简单的配置如下
ProxyPass /images !
ProxyPass /css !
ProxyPass /js !
ProxyPass /

http://localhost:8080/               
在这个配置中,我们把所有 http://localhost 的请求代理到 http://localhost:8080/ ,这也就是Tomcat的访问地址,除了images、css、js几个目录除外。我们同样可以利用mod_proxy来做负载均衡,再看看下面这个配置
ProxyPass /images !
ProxyPass /css !
ProxyPass /js !
ProxyPass / balancer://example/
<roxy balancer://example/>
BalancerMember                        
http://server1:8080/                                
BalancerMember                                 
http://server2:8080/                                
BalancerMember                        
http://server3:8080/                                
</Proxy>

        
配置比JK简单多了,而且它也可以通过一个页面来监控集群运行的状态,并做一些简单的维护设置。
               

三. ajp_proxy               
ajp_proxy连接方式其实跟http_proxy方式一样,都是由mod_proxy所提供的功能。配置也是一样,只需要把http:// 换成 ajp:// ,同时连接的是Tomcat的AJP Connector所在的端口。上面例子的配置可以改为
ProxyPass /images !
ProxyPass /css !
ProxyPass /js !        
ProxyPass / balancer://example/
<roxy balancer://example/>
BalancerMember ajp://server1:8080/
BalancerMember ajp://server2:8080/
BalancerMember ajp://server3:8080/
</Proxy>               

采用proxy的连接方式,需要在Apache上加载所需的模块,mod_proxy 相关的模块有
mod_proxy.so、mod_proxy_connect.so、mod_proxy_http.so、mod_proxy_ftp.so、 mod_proxy_ajp.so, 其中mod_proxy_ajp.so只在Apache 2.2.x中才有。如果是采用 http_proxy方式则需要加载 mod_proxy.so 和 mod_proxy_http.so;如果是 ajp_proxy 则需要加载mod_proxy.so和mod_proxy_ajp.so这两个模块。

四. 三者比较               
相对于JK的连接方式,后两种在配置上是比较简单的,灵活性方面也一点都不逊色。但就稳定性而言就不像JK这样久经考验,毕竟Apache 2.2.3推出的时间并不长,采用这种连接方式的网站还不多,因此,如果是应用于关键的互联网网站,还是建议采用JK的连接方式。
                                                
相关网址               
Apache http://httpd.apache.org
Tomcat http://tomcat.apache.org
JK文档 http://tomcat.apache.org/connectors-doc/

平台版本信息 Windows : 6.1.7601.65536 (Win32NT) Common Language Runtime : 4.0.30319.42000 System.Deployment.dll : 4.8.3761.0 built by: NET48REL1 clr.dll : 4.8.3928.0 built by: NET48REL1 dfdll.dll : 4.8.3761.0 built by: NET48REL1 dfshim.dll : 4.0.31106.0 (Main.031106-0000) 源 部署 URL : file:///D:/Users/0082994/Downloads/HKC.Main.application 部署提供方 URL : http://10.8.151.96/PRD/YMS/HKC.Main.application 服务器 : Microsoft-IIS/10.0 X-Powered-By : ASP.NET 应用程序 URL : http://10.8.151.96/PRD/YMS/Application%20Files/HKC.Main_1_0_0_119/HKC.Main.exe.manifest 服务器 : Microsoft-IIS/10.0 X-Powered-By : ASP.NET 标识 部署标识 : HKC.Main.application, Version=1.0.0.119, Culture=en, PublicKeyToken=0000000000000000, processorArchitecture=x86 应用程序标识 : HKC.Main.exe, Version=1.0.0.119, Culture=en, PublicKeyToken=0000000000000000, processorArchitecture=x86, type=win32 应用程序摘要 * 可安装的应用程序。 错误摘要 以下是错误摘要,这些错误的详细信息列在该日志的后面。 * 激活 D:\Users\0082994\Downloads\HKC.Main.application 导致异常。 检测到下列失败消息: + 存储操作期间发生异常。 + 另一个程序正在使用此文件,进程无法访问。 (异常来自 HRESULT:0x80070020) 组件存储事务失败摘要 * [2025/11/9 8:47:27] 处的事务 - 暂存组件文件(HKC.Main.exe)未成功。 - 暂存组件(Infragistics4.Win.UltraWinGrid.DocumentExport.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Win.UltraWinGrid.DocumentExport.v17.2.dll)未成功。 - 暂存组件(Infragistics4.Documents.Word.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Documents.Word.v17.2.dll)未成功。 - 暂存组件(RDotNet.dll.genman)未成功。 - 暂存组件文件(RDotNet.dll)未成功。 - 暂存组件(Infragistics4.Win.UltraWinCalcManager.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Win.UltraWinCalcManager.v17.2.dll)未成功。 - 暂存组件(AIM.AimBrain.UI.Service.dll.genman)未成功。 - 暂存组件文件(AIM.AimBrain.UI.Service.dll)未成功。 - 暂存组件(AIM.AimBrain.HKC.UI.View.Admin.dll.genman)未成功。 - 暂存组件文件(AIM.AimBrain.HKC.UI.View.Admin.dll)未成功。 - 暂存组件(NPOI.OOXML.dll.genman)未成功。 - 暂存组件文件(NPOI.OOXML.dll)未成功。 - 暂存组件(Infragistics4.Olap.DataProvider.Adomd.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Olap.DataProvider.Adomd.v17.2.dll)未成功。 - 暂存组件(AIM.AimBrain.HKC.UI.EDA.View.CF.dll.genman)未成功。 - 暂存组件文件(AIM.AimBrain.HKC.UI.EDA.View.CF.dll)未成功。 - 暂存组件(AIM.AimBrain.HKC.UI.EDA.ValueObject.dll.genman)未成功。 - 暂存组件文件(AIM.AimBrain.HKC.UI.EDA.ValueObject.dll)未成功。 - 暂存组件(NPOI.OpenXml4Net.dll.genman)未成功。 - 暂存组件文件(NPOI.OpenXml4Net.dll)未成功。 - 暂存组件(Infragistics4.Win.SupportDialogs.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Win.SupportDialogs.v17.2.dll)未成功。 - 安装部署(http://10.8.151.96/PRD/YMS/HKC.Main.application#HKC.Main.application, Version=1.0.0.119, Culture=en, PublicKeyToken=0000000000000000, processorArchitecture=x86)未成功。 - 设置一个或多个部署元数据未成功。 警告 * 此应用程序清单无签名。签名验证将被忽略。 * 此应用程序清单无签名。签名验证将被忽略。 * 此应用程序清单无签名。签名验证将被忽略。 操作进度状态 * [2025/11/9 8:47:17] : 已启动 D:\Users\0082994\Downloads\HKC.Main.application 的激活过程。 * [2025/11/9 8:47:17] : 部署清单处理已成功完成。 * [2025/11/9 8:47:17] : 已启动应用程序的安装过程。 * [2025/11/9 8:47:17] : 应用程序清单处理已成功完成。 * [2025/11/9 8:47:19] : 已到兼容运行时版本 4.0.30319。 * [2025/11/9 8:47:19] : 信任请求和平台检测已完成。 * [2025/11/9 8:47:26] : 预订依赖项下载已完成。 * [2025/11/9 8:47:26] : 已启动下载的应用程序的提交过程。 错误详细信息 执行此操作期间检测到下列错误。 * [2025/11/9 8:47:27] System.Deployment.Application.DeploymentException (ComponentStore) - 存储操作期间发生异常。 - 源: System.Deployment - 堆栈跟踪: 在 System.Deployment.Application.ComponentStore.SubmitStoreTransaction(StoreTransactionContext storeTxn, SubscriptionState subState) 在 System.Deployment.Application.ComponentStore.SubmitStoreTransactionCheckQuota(StoreTransactionContext storeTxn, SubscriptionState subState) 在 System.Deployment.Application.ComponentStore.CommitApplication(SubscriptionState subState, CommitApplicationParams commitParams) 在 System.Deployment.Application.SubscriptionStore.CommitApplication(SubscriptionState& subState, CommitApplicationParams commitParams) 在 System.Deployment.Application.ApplicationActivator.InstallApplication(SubscriptionState& subState, ActivationDescription actDesc) 在 System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl, Uri& deploymentUri) 在 System.Deployment.Application.ApplicationActivator.PerformDeploymentActivationWithRetry(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl) --- 引发异常的上一位置中堆栈跟踪的末尾 --- 在 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() 在 System.Deployment.Application.ApplicationActivator.PerformDeploymentActivationWithRetry(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl) 在 System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state) --- 内部异常 --- System.IO.FileLoadException - 另一个程序正在使用此文件,进程无法访问。 (异常来自 HRESULT:0x80070020) - 源: System.Deployment - 堆栈跟踪: 在 System.Deployment.Internal.Isolation.IStore.Transact(IntPtr cOperation, StoreTransactionOperation[] rgOperations, UInt32[] rgDispositions, Int32[] rgResults) 在 System.Deployment.Internal.Isolation.Store.Transact(StoreTransactionOperation[] operations, UInt32[] rgDispositions, Int32[] rgResults) 在 System.Deployment.Application.ComponentStore.SubmitStoreTransaction(StoreTransactionContext storeTxn, SubscriptionState subState) 组件存储事务详细信息 * [2025/11/9 8:47:27] 处的事务 + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: MY665HR1.G4K.application + System.Deployment.Internal.Isolation.StoreOperationSetDeploymentMetadata - 状态: Set - HRESULT: 0x0 + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: HKC.Main.exe.manifest + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\LogIn.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Resource\NOGRAB.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\System.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: tibrv.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: SPCControlRuleList.xml + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: HKC.Main.exe.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\system_logo_yms.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\LogOut.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\system_logo_eda.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\Database\DatabaseConnectSourceFactory.xml + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\TIB\ListenTIBConnection.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\FileTrend.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Bottom\icon_time.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Bottom\icon_user.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Index\index.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\Database\DatabaseSourceFactory.xml + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\header_back.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Resource\LEAKAGE.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\icon_max.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\icon_min.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\TIB\TIBConnection.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\Database\TSqlMap.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\Database\SqlMap.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\InitializeMenu.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: View\AOI\DefectImage\LEAKAGE.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\icon_exit.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Bottom\icon_message.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\OfflineTrend.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: View\AOI\DefectImage\NA.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: icon.ico + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: View\AOI\DefectImage\NOGRAB.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Resource\NA.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\system_logo_edaspc.png + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.MapLib.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.MapLib.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: IBatisNet.DataMapper.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: IBatisNet.DataMapper.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.Core.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.Core.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataSource.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataSource.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: log4net.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: log4net.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.TextDocument.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.TextDocument.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinListBar.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinListBar.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.SPC.View.Archive.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.SPC.View.Archive.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinLiveTileView.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinLiveTileView.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinSpellChecker.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinSpellChecker.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.DataVisualization.UltraGeographicMap.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.DataVisualization.UltraGeographicMap.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinSpreadsheet.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinSpreadsheet.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.Entity.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.Entity.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraGauge.v17.2.Design.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraGauge.v17.2.Design.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.DataVisualization.Shared.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.DataVisualization.Shared.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.TextDocument.TSql.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.TextDocument.TSql.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Oracle.ManagedDataAccess.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Oracle.ManagedDataAccess.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Calulation.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Calulation.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.View.Systems.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.View.Systems.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.EDA.View.Module.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.EDA.View.Module.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinDock.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinDock.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: InfragisticsWPF4.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: InfragisticsWPF4.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Controls.Search.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Controls.Search.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: NPOI.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: NPOI.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Controls.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Controls.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataProvider.Flat.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataProvider.Flat.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Controls.Map.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Controls.Map.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.Portable.Core.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.Portable.Core.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.Misc.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.Misc.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinEditors.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinEditors.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.WF.Service.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.WF.Service.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Controls.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Controls.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinCalcManager.v17.2.FormulaBuilder.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinCalcManager.v17.2.FormulaBuilder.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: TIBCO.Rendezvous.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: TIBCO.Rendezvous.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: TIBCO.Rendezvous.netmodule + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Shared.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Shared.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: IBatisNet.Common.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: IBatisNet.Common.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.EDA.Service.Extract.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.EDA.Service.Extract.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.v17.2.Design.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.v17.2.Design.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinTabbedMdi.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinTabbedMdi.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinPrintPreviewDialog.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinPrintPreviewDialog.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGauge.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGauge.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGrid.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGrid.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Castle.DynamicProxy.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Castle.DynamicProxy.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.DataVisualization.UltraSparkline.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.DataVisualization.UltraSparkline.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Microsoft.Office.Interop.Excel.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Microsoft.Office.Interop.Excel.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinInkProvider.Ink17.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinInkProvider.Ink17.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGrid.WordWriter.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGrid.WordWriter.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: RDotNet.NativeLibrary.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: RDotNet.NativeLibrary.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinTabControl.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinTabControl.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.WorkFlow.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.WorkFlow.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Controls.Search.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Controls.Search.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.SPC.View.Analyzer.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.SPC.View.Analyzer.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinFormattedText.WordWriter.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinFormattedText.WordWriter.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.View.Option.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.View.Option.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinRadialMenu.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinRadialMenu.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.WorkFlow.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.WorkFlow.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinToolbars.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinToolbars.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.IO.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.IO.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraChart.v17.2.Design.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraChart.v17.2.Design.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.DataVisualization.UltraDataChart.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.DataVisualization.UltraDataChart.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.Excel.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.Excel.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinCarousel.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinCarousel.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Quartz.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Quartz.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinStatusBar.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinStatusBar.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Newtonsoft.Json.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Newtonsoft.Json.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Math.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Math.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinPivotGrid.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinPivotGrid.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.Extract.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.Extract.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGanttView.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGanttView.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Microsoft.Vbe.Interop.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Microsoft.Vbe.Interop.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Chart.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Chart.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.ViewModel.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.ViewModel.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinListView.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinListView.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.SPC.View.Setting.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.SPC.View.Setting.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinTree.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinTree.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinDataSource.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinDataSource.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataSource.Mdx.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataSource.Mdx.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinSchedule.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinSchedule.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.Core.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.Core.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Chart.SPC.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Chart.SPC.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: NPOI.OpenXmlFormats.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: NPOI.OpenXmlFormats.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.EDA.View.Cell.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.EDA.View.Cell.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.EDA.View.Array.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.EDA.View.Array.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataProvider.Xmla.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataProvider.Xmla.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataSource.Xmla.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataSource.Xmla.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Renci.SshNet.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Renci.SshNet.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: office.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: office.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: TeeChart.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: TeeChart.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Undo.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Undo.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.View.Common.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.View.Common.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinMaskedEdit.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinMaskedEdit.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.SPC.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.SPC.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: stdole.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: stdole.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Entity.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Entity.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Service.Extract.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Service.Extract.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Microsoft.Ink.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Microsoft.Ink.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinExplorerBar.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinExplorerBar.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.TextDocument.CSharp.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.TextDocument.CSharp.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.R.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.R.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGrid.ExcelExport.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGrid.ExcelExport.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataSource.Flat.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataSource.Flat.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Service.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Service.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.TextDocument.VisualBasic.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.TextDocument.VisualBasic.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinChart.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinChart.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: InfragisticsWPF4.Controls.Layouts.XamTileManager.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: InfragisticsWPF4.Controls.Layouts.XamTileManager.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinOfficeNavBar.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinOfficeNavBar.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.AppStylistSupport.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.AppStylistSupport.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataProvider.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataProvider.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.Reports.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.Reports.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: HKC.Main.exe.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x80070020 - 文件: HKC.Main.exe + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Win.UltraWinGrid.DocumentExport.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Win.UltraWinGrid.DocumentExport.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Documents.Word.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Documents.Word.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: RDotNet.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: RDotNet.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Win.UltraWinCalcManager.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Win.UltraWinCalcManager.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: AIM.AimBrain.UI.Service.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: AIM.AimBrain.UI.Service.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: AIM.AimBrain.HKC.UI.View.Admin.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: AIM.AimBrain.HKC.UI.View.Admin.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: NPOI.OOXML.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: NPOI.OOXML.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Olap.DataProvider.Adomd.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Olap.DataProvider.Adomd.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: AIM.AimBrain.HKC.UI.EDA.View.CF.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: AIM.AimBrain.HKC.UI.EDA.View.CF.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: AIM.AimBrain.HKC.UI.EDA.ValueObject.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: AIM.AimBrain.HKC.UI.EDA.ValueObject.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: NPOI.OpenXml4Net.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: NPOI.OpenXml4Net.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Win.SupportDialogs.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Win.SupportDialogs.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationInstallDeployment - 状态: Failed - HRESULT: 0x1 - AppId: http://10.8.151.96/PRD/YMS/HKC.Main.application#HKC.Main.application, Version=1.0.0.119, Culture=en, PublicKeyToken=0000000000000000, processorArchitecture=x86 + System.Deployment.Internal.Isolation.StoreOperationSetDeploymentMetadata - 状态: Failed - HRESULT: 0x1 + System.Deployment.Internal.Isolation.StoreTransactionOperationType (27) - HRESULT: 0x1
最新发布
11-10
评论 1
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值