Using an Accusoft DLL on a webpage is similar to Manually Reported Runtime (Non-Node-Locked), as it requires calls to IG_lic_solution_name_set function, IG_lic_solution_key_set function, and IG_lic_OEM_license_key_set function. However, the web licenses are not node-locked to particular hardware but are node-locked to a set of specific domains or sub-domains. Sub-paths of those domains and sub-domains do not require additional licensing, thus if http://www.mysite.com is licensed, so is http://www.mysite.com/imaging.
To get an OEM license key, the developer will identify one or more domains or sub-domains to Accusoft's Licensing Center. There is a DLL web licensing site that contains the OEM License Generator web application. This web application is used to create an OEM license key that the developer can use along with the solution name and solution key on the webpage in the domain or sub-domain.
In the following example:
The developer would do the following:
C++ |
Copy Code
|
---|---|
IG_lic_solution_name_set("ACMEImaging"); IG_lic_solution_key_set(0x1C3A023F, 0xA018F260, 0x37AF0E51, 0x557F2389); IG_lic_OEM_license_key_set("2.0.GQCC0EmUgONaI4QDZ32tpGWfpGW4gtbC0iIC0iN4bigYM3m3K5b487QOsAM38O24mUp5bOpD2O240OQ32U2YsUKDKA87MYPGgGgaptMiK5Nv8AI4mYg4m3QvW52DZCPGs4p784mtP4IUgOWiIG0AQYp4052iIAWvNCZfpGWC8vQ5P4ZGKaPAWfbiYfZOI303pOZAgisiNaWA27gGsf8Ob7Zvm5IaKGI4KC8GsG2CWYpGQAg5sUmYWvZCQANig48G2ap4bG0DsO240YsUmtptNiZamCPGbYMfMO83gANAZCN52YbY8U8f8DM4m3g7MYMYWGW5Q7QGWaMiN7MtZfmtgY8AN7NDP7Z4W7sCbGKUPa0im7EDPP"); |