web.config (C#)でのIronXLライセンスの設定

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

この問題はIronXLバージョン2024.3.20解決されました

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

古いIronXLのバージョン、特にバージョン2023.4.13から2024.3.20の間には、既知のライセンス問題があります:

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

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

ワークアラウンド

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

例:

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

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

using System.Configuration;

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

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

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

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

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

IronXL.License.LicenseKey = licenseKey
$vbLabelText   $csharpLabel