ImageGear v26.3 - Updated
Developer Guide / Licensing and Distributing / Runtime Licensing / How to Register a Manually Reported Runtime License (Non-Node-Locked)
In This Topic
    How to Register a Manually Reported Runtime License (Non-Node-Locked)
    In This Topic

    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.

    Set the following:

    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 method of the ImGearLicense class. For example:

      C#

      ImGearLicense.SetSolutionName("YourSolutionName");
      

    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 method of the ImGearLicense class.  For example: 

      C#

      ImGearLicense.SetSolutionName("YourSolutionName");
      ImGearLicense.SetSolutionKey(1234, 1234, 1234, 1234);
      

    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 method of the ImGearLicense class, then the toolkit is completely licensed and can be distributed without any further licensing operations.

      C#

      ImGearLicense.SetSolutionName("YourSolutionName");
      ImGearLicense.SetSolutionKey(1234, 1234, 1234, 1234);
      ImGearLicense.SetOEMLicenseKey("2.0.GQCC0EmUgONaI4QDZ32tpGWfpGW4gtbC0iIC...");
      

    This property is not required for Automatically Reported Runtime licensing.