Altova Authentic 2024 Browser Edition

Licensing for Enterprise Edition

Home Prev Top Next

The license for Authentic Browser Enterprise Edition can be purchased at the Altova Website.

 

Overview of setting up the Enterprise Edition license

Given below is a list summarizing the steps you must take to correctly set up your license information for Authentic Browser Enterprise Edition.

 

Authentic Browser Enterprise Edition requires the following valid license information: (i) the server name for which the license is valid; (ii) the name of the company to which the license has been registered, and (iii) the license key. This information will be sent to you in the License Email you will receive on purchasing your Authentic Browser Enterprise Edition license.

The license information must be located in the HTML Page for Authentic Plug-in. How exactly this is to be done in the HTML page is explained below. (Note that there is no specific license key file that Authentic Browser will reference.)

If the licensing information supplied in the HTML Page for Authentic Plug-in is valid, Enterprise Edition functionality in the Authentic Browser File will be unlocked.

The HTML Page for Authentic Plug-in must be stored on the server for which the license is valid.

 

How to enter the license information

The three license key parameters (server name, company name, and license key) must be entered in the HTML Page for Authentic Plug-in and can be done in the following ways:

 

As parameter values of the OBJECT or EMBED elements. How to do this is described in the respective HTML page sections for Internet Explorer and Firefox.

If the HTML page is to be browser-independent, the license parameters can be registered as shown in the code listing in the Browser-Independent Example.

The license parameters can also be set on the object directly, as shown in the code listing below, which adapts the code listing in the Browser-Independent Example.

 

 <SCRIPT LANGUAGE=javascript>

 // event subscription if running on Firefox 

 if ( isFirefoxOnWindows() )

 {

         objPlugIn.addEventListener("ControlInitialized", InitAuthenticPluginPage, false);

 }

 </SCRIPT>

 <SCRIPT LANGUAGE="javascript" FOR=objPlugIn EVENT="ControlInitialized">  

 // event subscription if running on Internet Explorer 

 if ( isIEOnWindows() )

 {

         InitAuthenticPluginPage();

 }

 </SCRIPT>  

 

 <SCRIPT type="text/javascript" LANGUAGE="javascript" > 

 function InitAuthenticPluginPage( )

 {

 var serverstr='DevAuthBrowTest';

 var basedir='Authentic/';

 objPlugIn.LicServer = 'DevAuthBrowTest';

 objPlugIn.LicCompany = 'Altova';

 objPlugIn.LicKey = 'XXXXXXXXXX';

 objPlugIn.SchemaLoadObject.URL = 'http://' + serverstr + basedir + 'OrgChart.xsd';

 objPlugIn.XMLDataLoadObject.URL = 'http://' + serverstr + basedir + 'OrgChart.xml' ;

 objPlugIn.DesignDataLoadObject.URL = 'http://' + serverstr + basedir + 'OrgChart.sps';

 objPlugIn.StartEditing();

 }

 </SCRIPT>

 

© 2017-2023 Altova GmbH