MIDSystem methods

  • Release version: Yokohama
  • Updated January 30, 2025
  • 1 minute to read
  • MIDSystem variables (referred to by the variable name ms.) provide a variety of methods to get information about the MID Server.

    Links to each of the MID Server sectionsEnsure that the MID Server can connect to elements inside and outside your networkDownload and install the MID Server on a Linux or Windows hostConfigure your MID ServerConfigure MID Server securityEnsure that the MID Server can connect to elements inside and outside your networkDownload and install the MID Server on a Linux or Windows hostConfigure your MID ServerConfigure MID Server security
    Method summary Description
    log(String message) Logs the given message with a standard prefix to indicate that the message was generated by JavaScript.
    getConfigParameter(String parameter name) Returns the value of the named configuration parameter.
    include(String script include) Include the MID Server script include with the given name into the current context.
    getName() Returns the name of the MID Server.
    getSysID() Returns the sys_id of the MID Server.
    toJavaScript(Object) Converts the given Java object into the equivalent JavaScript object.

    This example writes a message to the log:

    ms.log('Attempting to log in with user: ' + this.getParameter('user'));