gredwhite
gredwhite
I downloaded source code and try to start it. During the startup I see following trace: ``` __ _ __ __ _ __ _ _ ___ _ _ / _\_...
I use following docker-compose file: ``` version: '3.4' services: samba: image: instantlinux/samba-dc:latest container_name: samba-dc cap_add: - CAP_SYS_ADMIN hostname: my.company environment: DOMAIN_ACTION: provision REALM: inno.tech volumes: - etc:/etc/samba - lib:/var/lib/samba ports:...
I have following snippet ``` val entry = ldapConnectionPool.getEntry(groupNn, SearchRequest.ALL_USER_ATTRIBUTES, "PrimaryGroupToken") val primaryGroupToken = entry.getAttributeValue("PrimaryGroupToken") ``` `primaryGroupToken` equals 550 after execution Then I want to find the same entry by...
I can read user `primaryGroupId`: [![enter image description here][1]][1] val entry = ldapConnectionPool.getEntry(userDn) primaryGroupID = entry.getAttributeValue(PRIMARY_GROUP_ID.ldapFieldName) it is a string which contains number. In my case it is always `513`...
I want to use immutable [objectGuid](https://learn.microsoft.com/en-us/windows/win32/ad/using-objectguid-to-bind-to-an-object) identifier in my project and I want to know how to remove by `objectGuid` The most obvious option is get the entryby `objectGuid` ```...
I have following open api specification description: openapi: 3.0.3 ... /foo: get: operationId: foo parameters: - name: bar in: query required: true schema: type: string responses: 200: description: description content:...
I have logback configuration like this: ``` IRC: %m%n%xEx 127.0.0.1 514 guacamole_client local0 128000 ``` But when I start application sometimes(!) I see the error with stacktrace: ``` 11:10:40,478 |-INFO...
I have a code like this: List dns = ... List entries = new ArrayList() for(dn: dns) entries.add(connection.getEntry()) I don't like this code because it makes n ldap calls. Is...
I investigated https://docs.ldap.com/ldap-sdk/docs/javadoc/com/unboundid/ldap/sdk/DeleteRequest.html and looks like it allows to remove only a single entry(with subtree if delete subtree control is passed). In my use case I want to remove multiple...
I have the following architecture: - Samba(AD) - Web App (it sends requests to Samba) which is spring boot 3 application - Client Client sends Kerberos ticket to web application...