Configuración de la clave de licencia en Web.config

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

The problem has been resolved as of IronWebScraper version 2024.3.6.

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

Para versiones anteriores de IronWebScraper, concretamente las comprendidas entre las versiones2023.4.13 y2024.3.6hay un problema conocido de licencias en:

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

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

Solución

Para solucionar 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="IronWebScraper.LicenseKey" value="IRONWEBSCRAPER-MYLICENSE-KEY-1EF01"/>
  </appSettings>
...
</configuration>
XML

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

using System.Configuration;

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

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

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

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

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

IronWebScraper.License.LicenseKey = licenseKey
VB   C#