From: Brian Candler Date: 2009-05-27T18:00:41+09:00 Subject: Re: Something Not going with my LDAP using SSL Xeno Campanoli wrote: > But when I try to run it with SSL, I get a failure saying "Can't connect > LDAP > Server". It looks like you are trying to connect to the LDAPS service on port 636. Are you sure your server implements this? Try: telnet myldaphost 636 Do you get connection accepted, or rejected? If it is accepted, then try openssl s_client -connect myldaphost:636 Is SSL successfully negotiated? The reason I ask is because there is another, completely different way of doing LDAP with SSL (using the STARTTLS extension on port 389). Maybe this is what your server implements instead. -- Posted via http://www.ruby-forum.com/.