Attribute that specifies class membership of the documented element or class
Questions tagged [memberof]
45 questions
0
votes
1 answer
How to query for all entries a WHERE "b MEMBER OF a.list"
I have an entity, let's say A, which has a field that is a list of another entity, let's say B.
This is A:
@Entity
@Table(name = "a")
public class A implements Serializable{
private static final long serialVersionUID = 1L;
@Id
…

1Z10
- 2,801
- 7
- 33
- 82
0
votes
1 answer
PL/SQL: Member of method with "where"
How could I do this:
Select values from three different columns into nested table or some other kind of collection...
DECLARE
TYPE blockers_set IS TABLE OF (
employee_ID NUMBER(8),
BLOCKING_GROUP NUMBER(4),
BLOCKING_TYPE NUMBER2(2));
select…

PL Pertti
- 1
- 1
0
votes
1 answer
Get Active Directory users in Group
I'm trying to get all users in "Programmers" group from AD.
If I use directory entry as LDAP://DC=Domain and filter as memberOf=CN=Programmers,CN=Users,DC=Domain, I can get user list.
But if I directly use entry as…

gimbup
- 184
- 3
- 18
0
votes
0 answers
Check if a user is a memberOf an AD group using VB Script
I have the following script to determine whether the current user is a part of a pre-determined group. I can get the correct username using the ADSystemInfo, but the objGroup.IsMember function always returns true. Even if there is no Group to…

Pieter van Wyk
- 2,316
- 9
- 48
- 65
0
votes
1 answer
Openldap memberof overlay memberof- attributes not working. Why?
I'm using CentOs 6.x 64 bit version and I'm trying to set the memberof attributes for the memberof overlay in openldap, but it doesn't appear to be working. I'm sure it's something I'm doing, but I haven't found out why.
A snippet from my backup…

BBuzzard
- 1
- 2
0
votes
1 answer
OpenLDAP memberof Overlay
I am currently trying to create an OpenLDAP Server that has a memberOf attribute for users.
Using cn=config, I loaded the memberof Module (lsof says, it is really loaded) and added the overlay to my database.
Parts of ldapsearch -b cn=config -D…

das_j
- 4,444
- 5
- 31
- 47
0
votes
1 answer
Memberof attribute doesn't exist in my phpldapadmin schema
I'm pretty new to phpldapadmin and I'd like to use the memberof attribute to see which group an user is in, but I cannot find this attribute in the schema
http://i59.tinypic.com/2eex2xv.jpg
How can I add this attribute to my schema?

Brullesco
- 1
- 3
0
votes
1 answer
Doctrine2 - get group which hasn't hidden person
The first entity called BUNDLE
/**
* @var \Doctrine\Common\Collections\Collection of \Akademie\Course\Course
* @ManyToMany(targetEntity="Akademie\Course\Course", mappedBy="bundles")
*/
private $courses;
The second entity is called COURSE
/**
*…

MattBuk
- 25
- 1
- 6
0
votes
0 answers
PowerShell script for Active Directory and permissions
I am writing a PowerShell script that extracts users from a specific OU and their group membership, puts the results in a CSV file and then emails that CSV file to specified recipients.
The script works fine, but I face the following problem:
When I…

flouts
- 21
- 1
- 2
0
votes
1 answer
Ldap how to get memberof
How to get memberof the user filter? Not all users have memberof.
$ds = `000.000.000.000`;
$ldaprdn = `CN=Users,dc=xxx,dc=xx,dc=xx,dc=xx`;
$user = `CN=UserSystem,`;
$ldappass = `pass`;
// connect to ldap server
$ldapconn =…

GreenA
- 25
- 6
0
votes
0 answers
memberOf returns different values for the same user
Using the same LDAP search query in our Java app, we get different values for memberOf while executing the java app for the same user.
The LDAP configuration to Active Directory is as below,
hostname - sscad.gcs.com
User DN -…
0
votes
1 answer
Spring security authentication using ldap based on memberOf attribute
I'm using spring authentication against ldap. If the provided user id and password exists in ldap, then I was able to get the user login. I would like to restrict this based on the user's memberOf attribute in the LDAP. If the user has memberOf…

ignatan
- 101
- 1
- 3
- 14
-1
votes
1 answer
Cisco ASA DAP rule and LDAP.memberOf attribute is not recognized
I am in charge of setting up a Cisco ASA 5xxx firewall with an OpenLDAP server for authentication in VPN. Everything is working fine so far.
However, I am trying to check the "memberOf" property of the user to assess if he is able to connect to a…

leo
- 19
- 1
- 5
-1
votes
1 answer
OpenLDAP overlay memberof only returns first member
I just installed OpenLdap 2.4.44 with the overlay memberOf. I configured the overlay to use uniquemember and groupOfUniqueNames for the attribute
overlay memberof
memberof-group-oc groupOfUniqueNames
memberof-member-ad uniquemember
The problem is…

Jose L Martinez-Avial
- 2,191
- 4
- 28
- 42
-2
votes
1 answer
How to generate a report showing all AD users and the Groups they belong to with CMD or PowerShell
So the company I work for wants to generate a csv or excel file that shows all active AD users and the groups they belong to. At first I was just tasked with finding an affordable app that will generate these reports for us but they changed their…

TommyVercetti003
- 1
- 1