Secure the Config Server Port
From ZIE Web Client 16.0.2 onwards, we can log in to the Admin Console and Client page using the secure configuration server port. To establish this connection, certain parameter values must be modified in the web.xml file.
web.xml of ZIE Web Client
<!-- Set the secure configuration server port, which should be the same as the value configured in the ZIEWEB config.properties file -->
<init-param id="InitParam_3">
<param-name>ConfigServerPort</param-name>
<param-value>8999</param-value>
</init-param>
</init-param>
<!-- Set to true to enable secure configuration server port -->
<init-param id="InitParam_7">
<param-name>isSecureConfigPort</param-name>
<param-value>false</param-value>
</init-param>
<!-- Location of the CustomizedCAs JKS file containing trusted certificates -->
<init-param id="InitParam_8">
<param-name>CustomizedCAsPath</param-name>
<param-value></param-value>
</init-param>
<!-- Password used to access the Customized JKS file -->
<init-param>
<param-name>CustomizedCAsPassword</param-name>
<param-value>ZIEWEBpwd</param-value>
</init-param>
<!-- Optional: SAF Keyring ID for secure configuration (applicable only on z/OS) -->
<init-param>
<param-name>SSLSAFKeyringID</param-name>
<param-value></param-value>
</init-param>
<!-- Optional: Owner ID for the SAF Keyring. Required only when SAF Keyring is used -->
<init-param>
<param-name>SSLSAFKeyringOwnerID</param-name>
<param-value></param-value>
</init-param>