The LDAP server is sending an SSL certificate to TDV. The problem is that TDV is unable to find this certificate in its (i.e. TDV's) truststore. Please do the following:
1. Ask the LDAP admin to provide you with the public certificate. If this is a certificate chain, please ensure that the LDAP admin provides the complete chain (Example: Root.cer, Intermediate.cer, Final.cer)
2. Use <TDV_INSTALL>\jdk\bin\keytool to import the certificates in the chain into the cis_server_truststore.jks file (located under <TDV_INSTALL>\conf\server\security) and into the cacert truststore file (located under TDV_INSTALL>\tdv82\jdk\lib\security) as in the example below.
Example
C:\apps\tdv82\jdk\bin\keytool -import -trustcacerts -alias ldapcert1 -file Root.cer -keystore C:\apps\tdv82\conf\server\security\cis_server_truststore.jks -storepass changeit
C:\apps\tdv82\jdk\bin\keytool -import -trustcacerts -alias ldapcert2 -file Intermediate.cer -keystore C:\apps\tdv82\jdk\lib\security\cacerts -storepass changeit
C:\apps\tdv82\jdk\bin\keytool -import -trustcacerts -alias ldapcert3 -file Final.cer -keystore C:\apps\tdv82\jdk\lib\security\cacerts -storepass changeit
3. Restart TDV.