Register Method



 
The Register method registers the server.


Syntax

    [bool=] SiteCafe.Server.Register(licenseName, licenceCode)
    
Parameters
    licenseName String that specifies the license name.
    licenceCode String that specifies the license code.
Return Value
    Returns a Boolean value that indicates whether the registration was successfull.
Remarks
    None.
Examples
    The following example registers the server (using a notional code).

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    success = SiteCafe.Server.Register("Name", "25A6Z336N7");
    alert(success);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top