Overview Kofax TotalAgility (KTA) is a Smart Process Application (SPA) platform that transforms and simplifies business interactions. Many people thinks Kofax TotalAgility as merely a document capture software but it actually does more than just an OCR software. KTA is an enterprise solution for document management and business process automation platform with OCR is just part of the whole … [Read more...]
How to Resolve ReferenceManagerPackage Error in Visual Studio 2019
If you encounter this error (see below) when you try to Add Reference in Visual Studio: You can take a look at the ActivityLog.xml file, but most of the time it's not necessary. Just for the sake of this example, let's open it up: Or you can view it with IE or XML viewer: For this particular case, Visual Studio cannot load … [Read more...]
How to Get Table Definition in SQL Server
Whenever you need to pull a quick definition of a table in SQL Server. Here's the SQL command (T-SQL) to get the table definition in a database: The result would be something similar to this: COLUMN_NAME DATA_TYPE IS_NULLABLE AccountNo int(10,0) YES AccountName varchar(50) YES Balance money(10,2) … [Read more...]
How to Install Python on Windows Server
Python is an excellent general purpose language that can be used for batch processing and other tasks on your server. To install Python on Windows Server operating system, you just need to run the installer and use the simplest configuration. Steps to Install Python on Windows Server Operating System Download the installer (full as opposed to the web sintaller) and … [Read more...]
How to Enable Secure HttpOnly Cookies in IIS
Session cookies are often seen as one of the biggest problems for security and privacy with HTTP, yet often times, it's necessary to utilize it to maintain state in modern web applications. By default, it is insecure and vulnerable to be intercepted by an authorized party. Cookies typically store session identifiers that may offer full access to an account, therefore if a cookie is intercepted, … [Read more...]