В моем WebSecurityConfigurerAdapter я переопределяю метод настройки следующим образом:
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.ldapAuthentication()
.userSearchBase("DC=unit1,DC=org1,DC=com")
.userSearchFilter("(sAMAccountName={0})")
.contextSource().url(ldapUrl).managerDn(mgrDn).managerPassword(mgrPassword);
}
Я передаю следующий запрос:
Заголовки запроса: Content-Type: application/x-www.form-urlencoded;charset=UTF-8
Данные формы username=user&password=password
Но я продолжаю получать ошибку ldap.Пожалуйста, сообщите.