CFLDAP issue with multiple SSL certificates
I'm running in this error with CFLDAP after we updated one of our SSL certificates in our keystore. We have a few domains using this ColdFusion server (running CF 11). We believe that it is trying to use the SSL certificate recently updated, instead of the correct one (for the site that needs to communicate to the LDAP server).
Error Message: An error has occurred while trying to execute query :SASL bind failed: some.server.com:1636. One or more of the required attributes may be missing or incorrect or you do not have permissions to execute this operation on the server.
code:
<cfldap server = "myserver" port = "1636" secure = "CFSSL_CLIENT_AUTH" clientcert = "/my/keystore" clientcertpassword = "mypassword" action = "query" name = "results" start = "mystart" filter = "myfilter" attributes = "myattributes" timeout = "600000">
Is there any way to specify the certificate alias with CFLAP?
Does anyone know how it chooses which certificate to use? like alphabetical, last updated, etc.
