Configuración de la Licencia de IronBarcode en web.config

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

Este problema se ha resuelto en la versión 2024.3.2 de IronBarcode.

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

Para las versiones anteriores de IronBarcode, específicamente aquellas entre las versiones 2023.4.1 y 2024.3.2, existe un problema de licencia conocido en:

  • Proyectos de ASP.NET
  • Versión de .NET Framework >= 4.6.2

    La clave almacenada en un archivo Web.config NO será reconocida ni utilizada por el producto.

Solución

Para abordar este problema, se recomienda recuperar la clave de licencia del archivo Web.config utilizando ConfigurationManager en el código, y luego aplicarla a la propiedad License.LicenseKey.

Ejemplo:

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

Con el archivo XML proporcionado anteriormente, podemos usar ConfigurationManager para recuperar el valor de la clave de licencia y pasarlo a la propiedad IronBarCode.License.LicenseKey.

using System.Configuration;

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

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

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

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

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

IronBarCode.License.LicenseKey = licenseKey
$vbLabelText   $csharpLabel