在 Web.config 中設置許可證密鑰

This article was translated from English: Does it need improvement?
Translated
View the article in English

This problem has been solved since IronOCR version 2024.3.4.

Exception: Unhandled exception. IronSoftware.Exceptions.LicensingException: IronOCR must be licensed for development.

對於舊版本的 IronOCR,特別是那些介於版本之間的 2023.4.132024.3.4, 在以下情況中已知有授權問題:

  • ASP.NET 專案
  • .NET Framework 版本 >= 4.6.2

存儲在 Web.config 文件中的密鑰將 無法 被產品檢測和使用。

解決方法

為了解決此問題,建議使用 ConfigurationManagerWeb.config 文件中獲取授權金鑰,然後應用於 License.LicenseKey 屬性。

範例:

<configuration>
...
  <appSettings>
    <add key="IronOcr.LicenseKey" value="IRONOCR-MYLICENSE-KEY-1EF01"/>
  </appSettings>
...
</configuration>
XML

透過上面提供的 XML 文件, 我們可以使用 ConfigurationManager 來獲取授權碼值並將其傳遞給 IronOcr.License.LicenseKey 屬性。


using System.Configuration;

string licenseKey = ConfigurationManager.AppSettings ["IronOcr.LicenseKey"];

IronOcr.License.LicenseKey = licenseKey;

using System.Configuration;

string licenseKey = ConfigurationManager.AppSettings ["IronOcr.LicenseKey"];

IronOcr.License.LicenseKey = licenseKey;
Imports System.Configuration

Private licenseKey As String = ConfigurationManager.AppSettings ("IronOcr.LicenseKey")

IronOcr.License.LicenseKey = licenseKey
VB   C#