Common Issues
OCR Pre-Processor always fails with dll error
Symptoms:
Pre-Processing log file shows the following error:
Log
[22:06:59 WRN] Job execution failed in 00:00:00.4073521. Returning failure resultSystem.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.DllNotFoundException: Failed to find library "liblept1753.dll" for platform x64.
Solution:
Please install the Visual C++ Redistributable for Visual Studio 2015
Multiple installs on same server have login issues
Symptoms:
When you have two EWA sites configured with the same host name you may experience login issues.
Given the example:
Both URL's have the same host name of server.domain.com
The problem is that the cookies from both sites will have the exact same name and depending on the order they get sent to the server may not work correctly.
Solution:
To solve the issue you must set the name of the cookie to something unique for each site.
Do this by adding the following CookieDefaults section to the appsettings.json file:
appsettings.json
"CookieDefaults": {
"Name": ".AspNetCore.Cookies"
}
Then for each site make them unique:
- http://server.domain.com/ewa might use ".AspNetCore.Cookies.ewa"
- http://server.domain.com/test-ewa might use ".AspNetCore.Cookies.test-ewa"
HTTP Error 500.19 - Internal Server Error on fresh install
Symptoms:
IIS Returns an error page: 500.19
Solution:
Please ensure the .NET Core hosting bundle has been installed.