To manually configure a DCAS listener channel

Note: This is a technology preview feature only. It is being made available to allow you to test and provide feedback on this new capability; however, this feature is not intended for production use and it is not supported as such.
  1. Make a backup copy of the seelistener.exe.config file, located by default in the %ProgramFiles(x86)%\Micro Focus\Enterprise Developer\binAnyCPU\SEE directory.
  2. Open the seelistener.exe.config file in a text editor running as administrator.
  3. Locate the <channels> element.
  4. Using the following example as your guide, add a <channel> child element:
    <channel name="DCAS" port="8990" protocol="DCAS">
      <ssl>
        <certificate
           file="path-to/seelistener.pfx"
          passphrase="secret-certificate-passphrase"
        />
        <clientAuth
          certificateOption="Required"
          checkRevocation="False"
          matchHostname="False"
          checkUsage="False"
        />
      </ssl>
    </channel>
    Note: If port 8990 is not available, specify any available port.
  5. Save the seelistener.exe.config file.