Entrust Certificate Authority Discovery - WARNING *** WARNING *** org.mozilla.javascript.EcmaError: "certificateDetails" is not defined.Issue Entrust Certificate Authority Discovery will fail with the error message "Failed Exploring CI Pattern, Pattern name: Entrust - Certificate Management, To Check Pattern Log Press Here".In the Horizontal Discovery Log, the pattern will fail in the "Retrieve Certificate" step in "Identification" section. The MID Server logs will have the following: WARNING *** WARNING *** org.mozilla.javascript.EcmaError: "certificateDetails" is not defined. Caused by error in MID Server script include 'RetrieveEntrustSSLCertificate' at line 27CauseThere is an error in the MID Server Script Incude "RetrieveEntrustSSLCertificate" at Line 27. The reference defined in the script is "certificateDetailsJSON" but the reference called inside JSON.stringify() method is "certificateDetails". Script: https://<instance-name>.service-now.com/ecc_agent_script_include.do?sys_id=6728fe4c5b93001012868473b881c779ResolutionWorkaround Provided: https://<instance-name>.service-now.com/ecc_agent_script_include.do?sys_id=6728fe4c5b93001012868473b881c779 Modified the MID Server Script Incude: From: if (JSUtil.nil(responseObject) || JSUtil.nil(responseObject['chainCerts'])) { ms.log('Certificate details are empty. No certificates found for the url '+inputParamsObject.apiEndpointURL); return JSON.stringify(certificateDetails); } To:if (JSUtil.nil(responseObject) || JSUtil.nil(responseObject['chainCerts'])) { ms.log('Certificate details are empty. No certificates found for the url '+inputParamsObject.apiEndpointURL); return JSON.stringify(certificateDetailsJSON); }==============================================================