Barcode Xpress for Node.js v14.0 - Updated January 7, 2025
Developer Guide / Licensing / Runtime Licensing / How to Register a Manually Reported Runtime License (Non-Node-Locked)
How to Register a Manually Reported Runtime License (Non-Node-Locked)

Manually Reported Runtime licensing embeds all of the licensing information directly into your application. Installation does not require any further licensing interaction. However, it is your responsibility to provide royalty reporting to Accusoft for the actual licenses deployed.

Solution Name

The Solution Name is:

  • a name assigned by Accusoft to the licenses purchased for runtime deployment.

  • a character string that is set for a component prior to use in a deployment environment and is typically the name of the organization that purchased the Runtime licenses.

  • set via the setSolutionName function. For example:

    const bx = require('barcode-js');
    bx.setSolutionName("ACMEImaging");
    
    

The Solution Name must be set in order to use runtime licensing.

Solution Key

The Solution Key:

  • is a set of four numbers assigned when the licenses are purchased for runtime deployment.

  • also identifies the organization that purchased the Runtime licenses.

  • is set via the setSolutionKey function. For example:

    const bx = require('barcode-js');
    bx.setSolutionName("ACMEImaging");
    bx.setSolutionKey(0x1C3A023F, 0xA018F260, 0x37AF0E51, 0x557F2389);
    
    

The Solution Key must be set in order to use runtime licensing.

OEMLicense Key

The OEMLicense Key:

  • is for use only by customers who choose to use Manually Reported Runtime licensing.

  • uniquely identifies the customer, product, version, edition, and platforms for which the license is valid.

  • is set via the setOemLicenseKey function. For example:

    const bx = require('barcode-js');
    bx.setSolutionName("ACMEImaging");
    bx.setSolutionKey(0x1C3A023F, 0xA018F260, 0x37AF0E51, 0x557F2389);
    bx.setOemLicenseKey("2.0.GQCC0EmUgONaI4QDZ32tpGWfpGW4gtbC0iIC0i...");
    
    

The component is now completely licensed and can be used without any further licensing operations.

Note that this key is tied to the customer, and code containing this key should not be redistributed.

This property is not required for Automatically Reported Runtime licensing.