MID Server protected records and reserved characters

  • Release version: Australia
  • Updated March 12, 2026
  • 1 minute to read
  • Some MID Server records cannot be altered. Certain special characters are pre-defined in XML and cannot be used in passwords.

    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

    MID Server Records that cannot be altered

    These records cannot be modified or deleted.

    Table Record
    Public Page [sys_public] InstanceInfo
    Scripted Web Service [sys_web_service]
    • InstanceInfo
    • GetMIDInfo
    • MIDAssignedPackages
    • MIDFieldForFileProvider
    • MIDFileSyncSnapshot
    • MIDServerCheck
    • MIDServerFileProvider

    Using special characters in an XML file

    The XML specification defines five predefined entities that represent special characters, and requires that all XML processors honor them. If these characters are used in a password, you will experience unexpected results.

    The following characters represent the five pre-defined entities:
    • "
    • &
    • '
    • <
    • >
    If you use the pre-defined entity characters in an XML file, such as the MID Server configuration file, you need to encode them. To encode pre-defined entities into an XML document:
    • replace " with &quot;
    • replace & with &amp;
    • replace ' with &apos;
    • replace < with &lt;
    • replace > with &gt;

    For example, to specify the password as test& in the MID Server config.xml file:

    <parameter encrypt="true" name="mid.instance.password" value="test&amp;"/>