Supporting UTF-8 characters in Apache Directory Server
Bind Request
Pojos
The BindRequest class and BindRequestImpl classes are UTF-8 compliants
This message is the first Ldap Message send by a user who want to connect to a LdapServer.
Its structure is :
- A Message Id in the LdapMessage envelop
- A Ldap protocol version to be used ( here, 3, as ApacheDS is a Ldapv3 compliant server )
- A name which is a distinguished name, or null if the user wants to bind as anonymous
- A authentication which can be a simple password or a SASL credential, with a mechanism and credentials.
The name and the mechanism are String, and must be decoded as UTF-8 strings in the server.
The simple authentication and the credentials are byte array, and are to be stored without any modification.
