Cody Skidmore
Cody Skidmore
@Nordes I implemented LDAP in our IS3 implementation using Novell.Directory.Ldap. The connection had a property for turning on SSL. // LdapConnection.SecureSocketLayer.. cn.SecureSocketLayer = _config.UseSSL; Is this what you are thinking?...
I actually, I poked around your the extension source and found this. public LdapService(ExtensionConfig config, ILogger logger) { _logger = logger; _config = config.Connections; _config.ToList().ForEach(f => _ldapConnections.Add(f.FriendlyName, new LdapConnection {...
I believe it is working. Under the covers it uses the same library I used on an IS3 implementation -- almost the exact code in fact.