Thanks for Downloading Dynamic Web TWAIN 30-Day Trial!
Your download will start shortly. If your download does not begin, click here to retry.
Error Troubleshooting
General Troubleshooting Steps
Before contacting support, complete the following steps:
- Try the Dynamic Web TWAIN online demo to check whether the issue is reproducible outside your own application.
- Open the browser developer tools (F12) and check the Console and Network tabs for errors. Note any error messages.
- Enable verbose logging and collect the log files as described below.
Enable and Collect Verbose Logs
- Remove old log files in the
logfolder under the service’s installation folder. - Set the log level using one of the options below:
- Option A (recommended) — Single client machine (no coding required): Use the Dynamic Web TWAIN Service information page.
- Open http://127.0.0.1:18625/ in a browser on the client machine.
- Under Detailed information, locate the Log row.
- Click (change) to enable verbose logging.
If (change) is not available, enable Web Setup by setting
EnableWebSetup=TRUEinDSConfiguration.ini(admin privileges required), then restart the Dynamic Web TWAIN Service. See Web Setup.

-
Option B — Single client machine: Add the line
LogLevel=14toDSConfiguration.inion the machine. TheDSConfiguration.inifile is in the parent directory of the log folder. - Option C — All client machines (application-wide): Set
LogLevelto1in your application code. This should be set as early as possible when theWebTwaininstance is created — for example, in theDynamsoft_OnReadyevent:function Dynamsoft_OnReady() { DWTObject = Dynamsoft.DWT.GetWebTwain("dwtcontrolContainer"); DWTObject.LogLevel = 1; }
- Option A (recommended) — Single client machine (no coding required): Use the Dynamic Web TWAIN Service information page.
- Perform a hard refresh (Ctrl + F5) on the application page and reproduce the issue.
- Optionally, create a
.txtfile noting the exact time the issue occurred and place it in the same log folder — this helps pinpoint the relevant log entries faster. - Zip the log folder and share it with the Dynamsoft Support Team.
After collecting the logs, disable verbose logging — leaving it enabled will affect scanning performance.
- Option A: Click (change) again on the service page.
- Option B: Remove the
LogLevelline fromDSConfiguration.ini.- Option C: Set
DWTObject.LogLevelback to0in your application code.
Original post creation date: Dec 03, 2021
Last modified date: Jun 15, 2026