Kofax Web Capture Installation Guide - KofaxWebCaptureInstallGuide - EN
Kofax Web Capture Installation Guide - KofaxWebCaptureInstallGuide - EN
Installation Guide
Version: 11.2
Date: 2019-11-14
Legal notice
Kofax is a trademark of Kofax, Inc., registered in the U.S. and/or other countries. All other trademarks
are the property of their respective owners. No part of this publication may be reproduced, stored, or
transmitted in any form without the prior written permission of Kofax.
2
Table of Contents
Legal notice................................................................................................................................................... 2
Preface.......................................................................................................................................................... 4
Related documentation.......................................................................................................................4
Getting help with Kofax products....................................................................................................... 4
Product documentation.......................................................................................................................5
Default online documentation.................................................................................................. 5
Configure offline documentation.............................................................................................. 5
Chapter 1: Kofax Web Capture..................................................................................................................6
Chapter 2: Licensing...................................................................................................................................7
Licensing Kofax Web Capture............................................................................................................7
Step1: Find or create the SALConfig.xml file..........................................................................7
Step 2: Create a registry entry................................................................................................7
Step 3: Locate the licensing client exe and dlls..................................................................... 8
Step 4: Add the code to call the license server......................................................................8
Troubleshooting........................................................................................................................8
Chapter 3: Installing Kofax Web Capture...............................................................................................10
Update Kofax Web Capture............................................................................................................. 10
Rebuilding Kofax Web Capture with an Update................................................................... 10
3
Preface
The Kofax Web Capture Installation Guide contains information about how to install this product.
Related documentation
In addition to this guide, the Kofax Web Capture documentation set includes the following:
• API Reference (.chm file): Gives the complete Kofax Web Capture class library for offline use.
• Kofax Web Capture Release Notes: Contains late-breaking product information not included in this
guide. You can download the release notes from the Kofax Web site at www.kofax.com.
To access the Kofax Knowledge Base, go to the Kofax website and select Support on the home page.
Note The Kofax Knowledge Base is optimized for use with Google Chrome, Mozilla Firefox or Microsoft
Edge.
4
Kofax Web Capture Installation Guide
Product documentation
By default, the Kofax Web Capture documentation is available online. However, if necessary, you can also
download the documentation to use offline.
http://docshield.kofax.com/Portal/Products/en_US/KWC/11.2.0-ez8t1ic7x3/KWC.htm
5
Chapter 1
Kofax Web Capture is a suite of .NET assemblies to use in projects to acquire, read, write, display,
annotate or process images. Kofax Web Capture assemblies can be used in desktop and ASP.NET
projects and the various objects and methods are accessible from any .NET-compliant language including
C# and Managed C++.
Kofax Web Capture WebForms controls include innovative AJAX controls for scanning, displaying and
manipulating images and documents, all with a minimal or no client-side footprint.
Images used in Kofax Web Capture controls or objects can come from files or databases, as well as from
scanners or cameras.
In addition to standard objects, Kofax Web Capture includes .NET controls you can add to WinForms,
WPF, and WebForms projects. These controls make it easy to create applications that display or edit
images.
6
Chapter 2
Licensing
If you are using an evaluation version of Kofax Web Capture, then there is nothing extra you need to do.
There is no licensing for eval versions.
In order to use the Kofax Licensing Server to validate the SDK/server please do the following:
1. Find or create SALConfig.xml.
2. Create a registry entry pointing to SALConfig.xml.
3. Find the location of license exe.
4. Add licensing code.
KEY:
VALUE:
7
Kofax Web Capture Installation Guide
SharedLicenseServerFileUnc STRING
Set the Value data of the SharedLicenseServerFileUnc key to the directory where the
SALConfig.xml file is located.
.NET Example:
or
static
{
string pathToExecutable = @"C:\Path\To\LicenseExecutable";
Atalasoft.Licensing.AtalaLicenseProvider.ValidateKofaxWebCaptureLicense(pathToExecutable
, "SDK");
}
Troubleshooting
Error: "The Kofax Licensing client could not be found. Path:..."
Verify the path to the executable used in the code points to a directory with all the files from Step 3.
Error: "[7011] SALicClnt: The License Server cannot be found. Verify the registry key."
Verify the registry key from Step 2 exists and it points to a valid directory that contains the
SALConfig.xml file.
8
Kofax Web Capture Installation Guide
Error: "[7001] SALicClnt: Unable to connect to license server. The license server may be down or
the network may have problems."
Verify the server indicated in the SALConfig.xml file exists and has the Kofax License Server installed
and running.
Note The licensing service will connect to a locally installed Kofax licensing server by default. For
Example: if there is invalid information in the SALConfig.xml file, the locally installed Kofax licensing
server will be used.
9
Chapter 3
This chapter includes the information you need to install Kofax Web Capture.
Kofax Web Capture downloads are available from www.kofax.com. Locate the Kofax Web Capture link
under .Net Components.
• If you downloaded Kofax Web Capture from the Kofax Electronic Delivery site, refer to the instructions
on the site.
• You must have Visual Studio 2010 or later or Visual Studio Express installed on your system to use the
Kofax Web Capture SDK.
For more information about third-party software components used with this product, refer to the Technical
Specifications document at www.kofax.com.
When we release an update or HotFix to Kofax Web Capture, you are free to use one of the following
approaches to distribute the update to your clients.
• Rebuild Kofax Web Capture with an update.
• Install an assembly redirect configuration file.
10