Questions tagged [nested-groups]

Adding a group as a member of another group. Commonly used in LINQ and LDAP.

22 questions
19
votes
2 answers

How are nested groups in LDAP normally implemented?

I'm coming to LDAP as a possible tool for managing access servers and source code at work, and while I've been able to grasp the basic concepts, like representing users and machines as entities, that create attributes, and defining which attributes…
Chris Adams
  • 2,721
  • 5
  • 33
  • 45
6
votes
3 answers

LINQ: Grouping SubGroup

How to group SubGroup to create list of Continents where each Continent has it own counties and each country has its own cities like this table Here is the t-sql: select Continent.ContinentName, Country.CountryName, City.CityName from …
Lucy
  • 243
  • 1
  • 4
  • 18
4
votes
2 answers

3 nested groups with linq

I am trying to get 4 List deep List collection, List>>>. From my Xml which looks like
kds6253
  • 835
  • 1
  • 12
  • 17
4
votes
3 answers

How to get nested-groups with regexp

I need your help with following regex. I have a text "[Hello|Hi]. We are [inviting | calling] you at position [[junior| mid junior]|senior] developer." using regex I want to get [Hello|Hi] [inviting | calling] [[junior| mid junior]|senior] the…
3
votes
4 answers

Problem getting nested groups in Regex

Given the following text: //[&][$][*]\n81723&8992%9892*2343%8734 I need to get: 1. & 2. $ 3. * 4. 81723&8992%9892*2343%8734 The first line defines delimiters that separates the numbers at the second line. There is an undefined number of…
vhtc
  • 790
  • 6
  • 12
3
votes
1 answer

SonarQube LDAP Plugin Active Directory nested groups

we use Sonarqube 6.2 with the LDAP Plugin 2.1.0.507. We have a connection to our Active Diretory. Normal user authentication and group mapping is working. But we have problems with nested groups. I try to use the specificy LDAP memberOf Filter…
Adam Palka
  • 73
  • 5
2
votes
1 answer

How to read nested groups in OpenLdap connected to Keycloak

I have a Keycloak with an openLDAP User Federation. In the LDAP, I have a user 'someUser' that belongs to multiple groups, namely: dn: cn=developers,ou=groups,dc=example,dc=com changetype: add objectclass: groupOfNames member:…
dreamcrash
  • 47,137
  • 25
  • 94
  • 117
2
votes
1 answer

How to setup TeamCity with LDAP group membership synchronization

This is a short howto to get you going with your LDAP setup for TeamCity. I personally struggled for quite a bit, before I managed to get the synchronisation to run. The default config files has a lot of settings and text, which may be more…
2
votes
0 answers

Latex output generated using Doxygen does not support nested groups (defgroup within a defgroup)

I have been trying to find a way to retain the hierarchy of groups (defgroup defined within a defgroup) in a PDF generated using LaTeX files (generated using Doxygen). For example, if I use: /** @defgroup group3 The Third Group * This is the third…
2
votes
2 answers

Nested Group LDAP Search Filter

I need information regarding LDAP search filter to extract nested group membership. Basically, my idea is say for instance, a user is belonging to 5 groups [A, B, C, D, E] Can I write a single LDAP search query to get the member groups to which…
puzzled confused
  • 151
  • 2
  • 6
  • 12
1
vote
1 answer

Authenticate user from specific groups on LDAP server using C#

I have a few nested groups on LDAP server and users in these groups. How can I authenticate users with given username and password by searching only in groups(not whole domain)? Does bind do this?
1
vote
0 answers

POSTGRESQL: Schema Does not Exists

The following is my query: select t1.id, sum( ((t1.json->'group_te3dx03/group_tb3th42'->>1)::t1.json->>'group_te3dx03/group_tb3th42/number_of_seats_allotted_to_wo')::int…
Mufaddal
  • 558
  • 5
  • 24
1
vote
0 answers

How to use ldap_matching_rule_in_chain for common name having comma

For retrieving nested user groups, i was using ldap_matching_rule_in_chain. This used to work fine until i came across common names in AD having comma in the middle. That is, users have been configured as LastName, First Name. So, if i have a…
Puzzled
  • 11
  • 4
1
vote
2 answers

VBScript - Retrieving a user's nested groups and getting rid of repetitions

For my work, I have to write a script in VBScript that retrieves a list of ALL groups a user belongs to, including nested groups, and take out nested groups that would be repeated throughout the list (as well as indent nested groups, further indent…
1
vote
0 answers

ldap_search_ext for nested groups

I'm trying to check whether a given user is member of a group in AD (need to test the same with openldap also). If I do command line ldapsearch with the filter given it is returning the object, which means the membership exists indirectly. I've…
1
2