`
Frederick
  • 浏览: 117769 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Ldap学习日记 - Add, Edit, Search, Delete entry

阅读更多
1. 添加一个新的entry
        LDAPAttributeSet attributes = new LDAPAttributeSet();
        LDAPAttribute attribute = null;
        
        String [] objectClass = {"top", "person", "organizationalPerson", "inetOrgPerson"};
        attribute = new LDAPAttribute("objectclass", objectClass);
        attributes.add(attribute);
        
        attribute = new LDAPAttribute("uid", user.getUserId());
        attributes.add(attribute);
        
        attribute = new LDAPAttribute("userpassword", user.getPassword());
        attributes.add(attribute);
        
        Name name = user.getUserInfo().getName();
        
        attribute = new LDAPAttribute("givenname", name.getFirstName());
        attributes.add(attribute);
        
        attribute = new LDAPAttribute("sn", name.getLastName());
        attributes.add(attribute);
        
        attribute = new LDAPAttribute("cn", name.toString());
        attributes.add(attribute);

        LDAPConnection conn = LdapUtils.getAuthenedConnection();
        conn.add(LdapUtils.getDnForUser(userId), attributes);

其中值得注意的是:
a. 在给属性集合添加属性的时候,必须先添加"objectclass"属性,否则会报告 object class vialate 异常。
b. 在使用连接将生成的新entry对象实际加入服务器的时候,必须先使用拥有添加权限的用户authenticate到服务器。
分享到:
评论
1 楼 Hejrcc 2007-06-14  
你怎么会有 LDAPAttributeSet  这个类的?
用了什么Library?

相关推荐

Global site tag (gtag.js) - Google Analytics