Web.configにライセンスキーを設定する
The problem has been resolved as of IronXL version 2024.3.20.
Exception: Unhandled exception. IronSoftware.Exceptions.LicensingException: IronXL must be licensed for development.
古いIronXLバージョン、特にバージョン間のものに利用していただけます。2023.4.13以下のコンテンツを日本語に翻訳してください:2024.3.20、以下の箇所に既知のライセンス問題があります:
- ASP.NETプロジェクト
.NET Framework バージョン >= 4.6.2
Web.config
ファイルに保存されたキーは、製品によって取得されて使用されることはありません。
ワークアラウンド
この問題に対処するために、コード内で ConfigurationManager を使用して Web.config
ファイルからライセンスキーを取得し、その後、License.LicenseKey プロパティに適用することをお勧めします。
例:
<configuration>
...
<appSettings>
<add key="IronXL.LicenseKey" value="IronXL-MYLICENSE-KEY-1EF01"/>
</appSettings>
...
</configuration>
上記の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