• novell.directory.ldap获取邮箱活动目录


    在windows系统上可以使用下列方法来查找所有的员工邮箱和员工组:

     1 StringDictionary ReturnArray = new StringDictionary();
     2                 Dictionary<string, string> resultDict = new Dictionary<string, string>();
     3                 DirectoryEntry deDirEntry = new DirectoryEntry("LDAP://mail.test.com",
     4                                                                    UserName,
     5                                                                    Password,
     6                                                                    AuthenticationTypes.Secure);
     7 
     8                 
     9 
    10                 DirectorySearcher mySearcher = new DirectorySearcher(deDirEntry);
    11                 
    12                 string sFilter = String.Format("(&(mailnickname=*)(|(objectcategory=user)(objectcategory=group)))");//(objectcategory=user)(objectcategory=group)
    13 
    14                 mySearcher.Filter = sFilter;
    15                 mySearcher.Sort.Direction = System.DirectoryServices.SortDirection.Ascending;
    16                 mySearcher.Sort.PropertyName = "cn";
    17                 mySearcher.PageSize = 1000;
    18 
    19                 SearchResultCollection results;
    20                 results = mySearcher.FindAll();
    View Code

    但是在移动端使用xamarin开发的时候是不能用上面的类的,需要使用其他的类库。

    下面推荐使用novell.directory.ldap类库,可以在NuGet上搜索LDAP即可查到,在我们安装程序包时可能遇到在PCL(可移植的)上无法安装,没关系,我们可以单独只装各平台的代码就可以了,虽然写的代码一样,但是就是要分平台来写,下面是例子:

     1 cn.Connect("mail.test.com", 389);
     2                 cn.Bind("test@test.com", "**password**");
     3                 string sFilter = String.Format("(&(mailnickname=*)(|(objectcategory=user)(objectcategory=group)))");
     4                 LdapSearchResults ldapSearchResults = cn.Search("CN=Users,DC=corp,DC=test,DC=com", LdapConnection.SCOPE_SUB, sFilter, null, false);
     5                 var entries = new List<LdapEntry>();
     6                 try
     7                 {
     8                     while (ldapSearchResults.hasMore())
     9                     {
    10                         entries.Add(ldapSearchResults.next());
    11                     }
    12                 }
    13                 catch (LdapException ex)
    14                 {
    15                     System.Console.WriteLine(ex.LdapErrorMessage);
    16                 }
    View Code

    注意事项,使用novell.directory.ldap时,有部分帐号无法连接。Search的参数请根据实际情况配置。

  • 相关阅读:
    quartz 定时调度持久化数据库配置文件
    springboot项目下mvnw文件的作用
    mysql安装版卸载,解压版安装
    idea提示,格式化代码,清除不使用的包快捷键,maven自动导jar包
    JavaScript中call,apply,bind方法
    彻底理解js中this的指向
    Gradle系列之从init.gradle说起
    响应式网页设计简单入门
    开启MySQL远程访问权限 允许远程连接
    https原理
  • 原文地址:https://www.cnblogs.com/zuimengaitianya/p/7059949.html
Copyright © 2020-2023  润新知