Kofax Export Connector 注册

Kofax Export Connector registration

我想创建一个 Kofax 导出连接器并在管理模块中注册它。我使用以下代码创建了一个 Class Library (.NET Framework) 用于设置和发布

KfxReleaseSetupScript.cs

namespace Kofax_CoBRA_Export
{
    [Guid("b826cc5a-ed80-4fe1-a80f-86a08cca2851")]
    public interface IKfxReleaseSetupScript
    {
        ReleaseSetupData SetupData { get; set; }
        KfxReturnValue OpenScript();
        KfxReturnValue CloseScript();
        KfxReturnValue RunUI();
        KfxReturnValue ActionEvent(KfxActionValue action, string dataStringOne, string dataStringTwo);
    }

    [Guid("39a4f6f6-0de1-40b2-8934-d9a7c2c79468")]
    [ClassInterface(ClassInterfaceType.None)]
    [ProgId("Kofax_CoBRA_Export.KfxReleaseSetupScript")]
    internal class KfxReleaseSetupScript : IKfxReleaseSetupScript
    {
        // Interface Implementation
    }
}

KfxReleaseScript.cs

namespace Kofax_CoBRA_Export
{
    [Guid("091d8f6c-b4c4-42d4-81aa-3b86b31ce46d")]
    public interface IKfxReleaseScript
    {
        ReleaseData DocumentData { get; set; }
        KfxReturnValue OpenScript();
        KfxReturnValue CloseScript();
        KfxReturnValue ReleaseDoc();
    }

    [Guid("e034c243-ae35-4823-9f2f-10bb6a6fe5c0")]
    [ClassInterface(ClassInterfaceType.None)]
    [ProgId("Kofax_CoBRA_Export.ReleaseScript")]
    internal class KfxReleaseScript : IKfxReleaseScript
    {
        // Interface Implementation
    }
}

我的 .inf 注册文件包含此代码

[Scripts]
Kofax_CoBRA_Export
[Kofax_CoBRA_Export]
SetupModule=.\bin\Debug\Kofax_CoBRA_Export.dll
SetupProgID=Kofax_CoBRA_Export.KfxReleaseSetupScript
SetupVersion=1.0
ReleaseModule=.\bin\Debug\Kofax_CoBRA_Export.dll
ReleaseProgID=Kofax_CoBRA_Export.KfxReleaseScript
ReleaseVersion=1.0
SupportsNonImageFiles=True
RemainLoaded=True
SupportsKofaxPDF=True
SupportsOriginalFileName=True
SupportsMultipleInstances=False
DisplayName=Kofax_CoBRA_Export

当我 select 管理模块中的 .inf 文件时,我只得到一个空框,因此没有要安装的东西。

我从

获取了信息

Kofax Capture Developer's Guide 10.0.0

KCEC-Text Exporter Sample

Kofax Capture API Reference Guide

Kofax Capture Export Type Library

但我真的不明白为什么我要在管理模块中安装任何东西。任何帮助将不胜感激。

在提供相对路径时,Kofax 期望二进制文件位于其自己的目录中(通常 C:\Program Files (x86)\Kofax\CaptureSS\ServLib\Bin 在服务器上,因为 admin.exe 使用此工作路径运行)。在你的情况下,这将转化为 C:\Program Files (x86)\Kofax\CaptureSS\ServLib\Bin\bin\Debug\Kofax_CoBRA_Export.dll.

请注意,Kofax 建议将所有自定义二进制文件(包括您的 inf 文件)复制到服务器目录,但我更喜欢为我的代码创建一个子文件夹,将所有文件放在那里。然后,我的 inf 文件将如下所示:

[Scripts]
SmartCAP.KEC.EnergieAG.SAP

[SmartCAP.KEC.EnergieAG.SAP]
SetupModule=SmartCAP.KEC.EnergieAG.SAP.dll
SetupProgID=SmartCAP.KEC.EnergieAG.SAP.Setup
SetupVersion=11.0
ReleaseModule=SmartCAP.KEC.EnergieAG.SAP.dll
ReleaseProgID=SmartCAP.KEC.EnergieAG.SAP
ReleaseVersion=11.0
SupportsNonImageFiles=True
SupportsKofaxPDF=True

请注意,Kofax 仍然需要能够解析您在解决方案中使用的所有依赖项 - 最肯定的是内部依赖项,例如 Kofax.ReleaseLib.Interop.DLL - 因此,您可以将它们复制到那里,或者 - 这就是我最好在您的代码中使用自定义程序集解析器,指向服务器目录。