Vincent a écrit : > Hi, > > > > I use Nuxeo 5 with an LDAP server and I can see members and groups > through Nuxeo Web Interface. > > I have no problem with the members but I can see no members in the > groups. I've found the problem : the users were registered > > like this(by open : first_name.name, instead of > uid=first_name.name,ou=Users,ou=OxObjects,dc=mydomain,dc=fr. > > I've created some users of the second > way(uid=first_name.name,ou=Users,ou=OxObjects,dc=mydomain,dc=fr) > > and Nuxeo displays these users. > > How can I fix that? Do I have to modify the LDAPReference class?(What do > I have to modify the LDAPReference class?)
Yes the current implementation of the LDAPReference class only resolve entries identified by full DNs and not just ids. To add ids support you'll have to hack around the reference implementations, either by adding support for ids to the LDAPReference class or by implementing a new IdReference implementation of the Reference interface (maybe IdReference is not the best name candidate for such a class though). > I also have another question. In the right access tab of the default > domain(I'm logged as Admin in the nuxeo web interface), > > I can add new rules for users but not for groups because the search > engine only find users and no groups(whereas in the Users Management page > > the search engine finds all groups and users). > > Do you know why it can’t find any groups? > No idea, in the default Nuxeo setup both users and groups are searched on the rights management tab... A debugger session is probably needed to find the cause of your problem on your setup. -- Olivier _______________________________________________ ECM mailing list [email protected] http://lists.nuxeo.com/mailman/listinfo/ecm
