James Sumners

Results 658 comments of James Sumners

I'm sorry. It isn't clear what I should be doing with that example. It starts a server and nothing else. But it looks like you are using `child_process` to spawn...

I would recommend using the debugger to step through the add and search functions of that example to determine the root cause of the issue. If you determine the issue...

#473 is an implementation. It just needs some attention.

We have tests specifically around size limits -- https://github.com/ldapjs/node-ldapjs/blob/3430f05d91bc152b18febe1f04665c8aea0faf11/test/client.test.js#L745-L774 If they are not sufficient, feel free to add some to our integration tests -- https://github.com/ldapjs/node-ldapjs/blob/3430f05d91bc152b18febe1f04665c8aea0faf11/test-integration/client/issues.test.js

Would you like to send a Pull Request to address this issue? Remember to add unit tests.

The error is stating that it cannot find the `cn=Manager,dc=ngbox,dc=com` user. Your LDAP server needs to return an entry when queried for that user.

LDAP connections are two parts: 1. A TCP connection is established to the server. 2. A `bind` is performed to authenticate. This bind can either be an anonymous bind or...

I don't know what you're asking. What is a "constructed attribute"?

Are they part of the LDAP specification?

According to https://web.archive.org/web/20200925170437/https://ldapwiki.com/wiki/Constructed%20Attribute they would be considered "Virtual Attributes" in a standard LDAP server. Regardless, it sounds like a server implementation detail. This library parses the attributes returned by the...