You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _articles/general-usage/license.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ DLS-connected license keys begin with the `DLS` prefix. Learn more about the Dyn
71
71
72
72
</div><divclass="multi-panel-start"></div>
73
73
74
-
Offline license keys begin with the `f0068` prefix.
74
+
Offline license keys usually begin with the `f00` prefix.
75
75
76
76
1. Without add-ons: activate the license in the customer portal, then acquire the offline key. This key only authorizes the use of the core DWT module.
77
77
2. With add-ons: activate the license in the customer portal, then acquire the offline keys. This may result in multiple license keys - one for the base DWT module, and separate ones for the add-ons. To use multiple keys in a single project, concatenate them (in any order) into a single string, separated with semicolons.
@@ -110,7 +110,7 @@ To use a full license key, set the value of [`Dynamsoft.DWT.ProductKey`](/_artic
110
110
2. Assign the license key string to [`Dynamsoft.DWT.ProductKey`](/_articles/info/api/Dynamsoft_WebTwainEnv.md#productkey):
111
111
112
112
```javascript
113
-
Dynamsoft.DWT.ProductKey='f0068******;'; // Use an online key
113
+
Dynamsoft.DWT.ProductKey='f00******;'; // Use an offline key
114
114
```
115
115
116
116
3. Load (or reload, if replacing an existing key) the web application and see that it starts scanning.
@@ -119,14 +119,14 @@ To use a full license key, set the value of [`Dynamsoft.DWT.ProductKey`](/_artic
119
119
120
120
</div><divclass="multi-panel-start"></div>
121
121
122
-
Offline license keys with add-ons should be concatenated (in any order) into a single string, separated with semicolons, and assigned to the same property (e.g. `f0068******;f0068******`).
122
+
Offline license keys with add-ons should be concatenated (in any order) into a single string, separated with semicolons, and assigned to the same property (e.g. `f00******;f00******`).
123
123
124
124
1. Locate the `dynamsoft.webtwain.config.js` file (or search for `ProductKey`).
125
125
126
126
2. Assign the license key string to [`Dynamsoft.DWT.ProductKey`](/_articles/info/api/Dynamsoft_WebTwainEnv.md#productkey):
127
127
128
128
```javascript
129
-
Dynamsoft.DWT.ProductKey='f0068******;f0068******'; // Use an online key
129
+
Dynamsoft.DWT.ProductKey='f00******;f00******'; // Use multiple offline keys
130
130
```
131
131
132
132
3. Load (or reload, if replacing an existing key) the web application and see that it starts scanning.
0 commit comments