Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么 Kofax 自定义模块和工作流代理(用 .Net 4.0 框架编写的 COM 对象)会因 Kofax 出现奇怪的错误(访问冲突、未找到方法等)而失败。当使用 .Net Framework 3.5 编译相同的模块时 - 一切正常。
我猜COM对象在x86主机应用程序(在我的情况下是Kofax)下失败的常见原因是因为它们被编译的.Net Framework版本(4.0不起作用但3.5工作正常)?
4.0 安装在目标工作站上。
先感谢您!
您可以通过将其放入 Kofax 模块的应用程序配置文件中使其工作:
<startup useLegacyV2RuntimeActivationPolicy="true"> <supportedRuntime version="v4.0"/> <requiredRuntime version="v4.0"/> </startup>