IronOCRライセンスの設定をweb.configで行う

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

問題はIronZIPバージョン 2024.3.3 として解決されました

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

以前のバージョンのIronZIP、特にバージョン2024.3.3より前にリリースされたものには、以下のライセンス問題が知られています:

  • ASP.NET プロジェクト
  • .NET Framework バージョン >= 4.6.2

    Web.config ファイルに保存されたキーは、製品によって使用されません

ワークアラウンド

この問題に対処するには、Web.configファイルからConfigurationManagerを使用してライセンスキーを取得し、それをLicense.LicenseKeyプロパティに適用することをお勧めします。

例:

<configuration>
  ...
  <appSettings>
    <add key="IronZip.LicenseKey" value="IRONZIP.MYLICENSE.KEY.1EF01"/>
  </appSettings>
  ...
</configuration>
<configuration>
  ...
  <appSettings>
    <add key="IronZip.LicenseKey" value="IRONZIP.MYLICENSE.KEY.1EF01"/>
  </appSettings>
  ...
</configuration>
XML

上記のXMLファイルを使用して、ConfigurationManagerを使用してライセンスキーの値を取得し、それをIronZip.License.LicenseKeyプロパティに渡すことができます。

using System.Configuration;

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

IronZip.License.LicenseKey = licenseKey;
using System.Configuration;

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

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

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

IronZip.License.LicenseKey = licenseKey
$vbLabelText   $csharpLabel