Web.configにライセンスキーを設定する

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

El problema ha sido resuelto a partir de la versión 2024.3.3 de IronZIP (アイアンZIP)。

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

旧バージョンのIronZIP (特にバージョン 2024.3.3、以下の箇所に既知のライセンス問題があります:

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

    Web.configファイルに保存されたキーは、製品によって取得されて使用されることはありません

ワークアラウンド

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

例:

<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
VB   C#