kofax

Kofax TotalAgility Send a PDF Document to Jobs Queue (KTA)

余生长醉 提交于 2021-01-28 16:42:49
问题 I'm at a loss with the KTA SDK. My intention is to pass a scanned document in PDF format with a few headers to KTA's jobs queue. As I'm still going through the documentation, my best guess right now is to use the Document class as a DTO then I need to call a method to pass that Document as a parameter: ... [HttpPost] public HttpResponseMessage Upload() { var httpRequest = System.Web.HttpContext.Current.Request; var DocType = httpRequest.Headers["X-DocType"]; var Pages = httpRequest.Headers["X

create setup form for custom module

余生长醉 提交于 2020-01-05 05:12:27
问题 I have a custom module getting executed right after the PDFGenerator finished. I followed this guide on how to create a custom module https://stackoverflow.com/a/55799101/9945420 When processing a batch document I want to manipulate the generated PDF file and add a footer to that file. The content of that footer needs to get configured in the Administration module. So within my project called "StampOnScanProcess" I added a Folder called "Setup" with two files. A Form called "FrmSetup" public

convert Kofax Release document to binary

∥☆過路亽.° 提交于 2019-12-24 11:46:53
问题 When it comes to the Kofax Release I want to convert each scanned document to a byte array. Within my ReleaseDoc method I first want to check if the file is a PDF file or TIFF file. The user is able to setup a bool value in the ReleaseSetup that leads to 'use PDF file if you have to decide between multiple file types'. I just created a snipped that tries to convert the file to a byte array. How can I check if I have to use a PDF or a image file within my ReleaseDoc method? It doesn't matter

How to correctly install Workflow Agents in Kofax?

爷,独闯天下 提交于 2019-12-13 17:21:28
问题 I'm working with Kofax Capture Workflow Agents. I have installed some WFAs before, but they didn't run on first try and I'm not really sure what I've done to get them working. Currently, I follow these steps to install my WFA: Compile my Source-Files to one DLL Remove Workflow Agent from Batch Classes Uninstall Workflow Agent over Tools > Workflow Agents Copy over to my Test-Environment Install Workflow Agent over Tools > Workflow Agents Add Workflow Agents to Batch Classes Publish Batches

Conditional OCR rotation on the image or Page in KOFAX

冷暖自知 提交于 2019-12-11 18:08:43
问题 We have two source of inputs to create a Batch first is Folder Import and second is Email import. I need to add condition where if the source of image is Email it should not allow to rotate the image and like wise if source if Folder import it should rotate the image. I have added a script for this in KTM. It is showing proper message of the source of image but it is not stopping the rotation of the image. Below check the below script for reference. Public Function setRotationRule(ByVal pXDoc

create custom module for pdf manipulation

戏子无情 提交于 2019-12-11 06:48:55
问题 I want to create a custom Kofax module. When it comes to the batch processing the scanned documents get converted to PDF files. I want to fetch these PDF files, manipulate them (add a custom footer to the PDF document) and hand them back to Kofax. So what I know so far: create Kofax export scripts add a custom module to Kofax I have the APIRef.chm (Kofax.Capture.SDK.CustomModule) and the CMSplit as an example project. Unfortunately I struggle getting into it. Are there any resources out there

Kofax - How to make Release Script configuration dependent on an active job

非 Y 不嫁゛ 提交于 2019-12-11 06:36:01
问题 I am implementing a Kofax release script class through IReleaseScript2 interface (that also inherits IReleaseScript interface). The problem is, that I need to have my release script's configuration dependent on currently selected job. Method Setup has a parameter of type IJob which is OK, but other methods don't. Thanks for your advice! 回答1: Are you talking about Kofax Capture or KTA? In both cases you'll need a reference to Kofax.ReleaseLib.Interop. Basically, each Export Connector (or

Has anyone used Kofax Capture API for creating a Importer to create a batch in Kofax

帅比萌擦擦* 提交于 2019-12-07 14:09:04
问题 I am trying to use Kofax Capture API and trying to write a custom module which will do a scan. For this i need to create a batch and then process/scan it. Is there anyway to process/scan a batch? 回答1: Hmm, I don't know if it's possible to do inside a custom module. When writing a custom module you're typically using the Kofax Capture Optimized Custom Module API (DBLiteOpt.dll). I know you can create an empty batch with a custom module by using BatchCreate method of the RuntimeSession object:

Has anyone used Kofax Capture API for creating a Importer to create a batch in Kofax

有些话、适合烂在心里 提交于 2019-12-06 00:12:35
I am trying to use Kofax Capture API and trying to write a custom module which will do a scan. For this i need to create a batch and then process/scan it. Is there anyway to process/scan a batch? Hmm, I don't know if it's possible to do inside a custom module. When writing a custom module you're typically using the Kofax Capture Optimized Custom Module API (DBLiteOpt.dll). I know you can create an empty batch with a custom module by using BatchCreate method of the RuntimeSession object: '*** Get your Process Id pid = m_oLogin.ProcessId '*** Create new batch Set m_oBatch = m_oRuntimeSession