Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ldapserver.rb: Unsupported object type: id=96 (Net::BER::BerError) #378

Closed
dup2 opened this issue Sep 13, 2020 · 2 comments
Closed

ldapserver.rb: Unsupported object type: id=96 (Net::BER::BerError) #378

dup2 opened this issue Sep 13, 2020 · 2 comments

Comments

@dup2
Copy link

dup2 commented Sep 13, 2020

I'm trying to use your testserver as the base for project to support some simple ldap queries.

However, with every client (ldapsearch and this ruby net-ldap library) I always get the following exception on the server which then terminates:
net-ldap-0.16.2/lib/net/ber/ber_parser.rb:93:in `parse_ber_object': Unsupported object type: id=96 (Net::BER::BerError)

Any ideas about this?

@tatsuya-ogawa
Copy link

LdapServerAsnSyntax need compiled.
So please try to replace LdapServerAsnSyntax like this

LdapServerAsnSyntax = Net::BER.compile_syntax(
      {
          :application => {
              :constructed => {
                  0 => :array, # LDAP BindRequest
                  3 => :array # LDAP SearchRequest
              },
              :primitive => {
                  2 => :string, # ldapsearch sends this to unbind
              },
          },
          :context_specific => {
              :primitive => {
                  0 => :string, # simple auth (password)
                  7 => :string # present filter
              },
              :constructed => {
                  3 => :array # equality filter
              },
          },
      }
  )

@dup2
Copy link
Author

dup2 commented Sep 15, 2020

Thanks, that worked!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants