spring-ldap Questions
2
Solved
I add users through LDAP for a certain application, made with spring.
While this works for most of the cases, in some cases, it does not work...
The retrieve the users I use:
public class LdapU...
Freesia asked 27/5, 2016 at 14:34
3
Solved
I am trying to use Spring LDAP for coding
<ldap-server ldif="classpath:my-ldap-clone.ldif" />
but I get this error
NoClassDefFoundError: org/apache/directory/server/core/DirectoryService
...
Alexandros asked 16/4, 2011 at 21:9
1
Solved
I need to add a new user entry to my ldap. Following is my code:
javax.naming.Name name = new DistinguishedName("cn=" + userName +",ou=Users,dc=wso2,dc=org");
Attribute objectClass = new Basic...
Craftsman asked 14/9, 2016 at 15:4
2
I have to configure Spring security to authenticate user through LDAP.
This is the subtree where manager user is:
ldaps://vldp.floal:636/CN=Administration,CN=fdam,DC=fg,DC=local
and this is whe...
Orvieto asked 30/3, 2016 at 9:55
1
I'm curious why some web servers (eg. Nginx) provides the Client SSL DN in reverse order.
A web app is posting the DN to a Java Web Service, which is attempting to create a Java javax.naming.ldap....
Roofing asked 18/11, 2015 at 0:58
2
I was following the samples of Spring LDAP project and was trying to convert xml configuration to Java Configuration.
I am trying to do CRUD operations on the LDAP server.
I was able to figure...
Kathline asked 23/9, 2015 at 17:42
1
Solved
Spring LdapRepository save() method throws exception when I'm trying to update an existing object in LDAP database.
org.apache.directory.api.ldap.model.exception.LdapEntryAlreadyExistsException: E...
Purulence asked 22/10, 2015 at 18:21
1
Solved
I've been working on Spring web application in our company which authenticates users from database. But we are wanted to use the active directory server in our company for this purpose instead of d...
Neckline asked 18/8, 2015 at 10:40
2
Solved
I need to talk to an LDAP server via spring-ldap with SSL, and the other end has a self-signed certificate no less.
Can any kind soul please point me to some instructions for setting this up?
Spicule asked 21/6, 2011 at 20:10
1
We are building a new library which will need to do read/writes to our main identity management LDAP system.
We are considering using either Spring LDAP (http://projects.spring.io/spring-ldap/), U...
Maidenly asked 10/2, 2015 at 16:42
2
In our new insurance project, I am trying to implement spring-security with Ldap active-directory.
I want to just check username/password against AD, once user found in AD. I want to authorize him...
Charla asked 22/5, 2013 at 17:18
1
I'm writing a web application that requires users to login. My company has an Active Directory server that I'd like to make use of for this purpose. However, I'm having trouble using Spring to auth...
Deangelo asked 25/4, 2014 at 14:13
1
Solved
I have the following configuration in my spring security xml file. When I try to authenticate I get the following message but cannot proceed.
INFO: Ignoring PartialResultException
I am aware tha...
Boettcher asked 12/8, 2014 at 12:43
1
Solved
I am currently creating a new web application using Spring Boot and began the process of integrating Spring Security for authentication. After successfully following the Spring Boot-based LDAP tuto...
Kohima asked 6/11, 2014 at 23:51
1
Solved
I have a Spring boot application that needs to perform LDAP queries. I'm trying to take the following recommendation from the Spring boot documentation:
"Many Spring configuration examples have...
Disarrange asked 23/9, 2014 at 20:21
1
I am trying to connect Ldap from spring security, getting connection errors. Could some one suggest what is wrong with this configuration,
UsernamePasswordAuthenticationFilter - An internal err...
Nuncia asked 7/6, 2013 at 2:23
2
I want to cache LDAP user data locally to allow faster queries. Do the Spring LDAP offers such a functionality? How can I do this?
I am using Spring Security 3.1 and Spring LDAP 1.3.1 for authenti...
Pammie asked 17/4, 2013 at 10:38
3
Solved
I'm trying to authenticate and then query our corporate LDAP using Spring LDAP and Spring security. I managed to make authentication work but when I attempt to run search I always get the following...
Prefigure asked 10/3, 2011 at 3:34
2
Solved
I'm trying to figure out how Spring LDAP (not the Spring security thing) works by setting up the most basic working program, but it seems that the actual authentication breaks.
This is the error I...
Altimeter asked 6/9, 2012 at 9:32
4
I am currently trying to use an embedded ldap server for unit tests.
In Spring Security, you can quickly define an embedded ldap server for testing with the tag with some sample data loaded from t...
Mention asked 13/2, 2009 at 2:44
1
Solved
Spring embedded ldap server in unit tests is similar, however no answer was given that suites me.
I can run my integration tests with spring and the embedded ldap server of spring-security without...
Otherdirected asked 15/11, 2012 at 11:35
1
I am trying to use Spring Security 3.0.2 LDAP authentication for a JSF website. When I use the below configuration in applicationContext-security.xml I get this exception - org.springframework.bean...
Arundinaceous asked 18/6, 2011 at 23:18
2
Solved
Spring 3.1
Tomcat 6.*
I'm working on making a Spring 3.1 webapp, authenticating with LDAP.
I tested the LDAP credentials (username, password, ldap URL, search pattern ) with a JNDI styled Java p...
Freeze asked 28/3, 2012 at 21:37
2
I don't (and will not) have administators account.
I want to change myself (user) password in Active Directory from java.
How can I do this?
Using code from web:
private void changePass() throws ...
Jephum asked 14/3, 2012 at 10:15
1
Solved
I use Grails + spring-security + LDAP to authenticate users. The authentication works now but I need the plain text password to authenticate a second service.
I tried the SpringSecurityService pro...
Okhotsk asked 23/2, 2011 at 7:59
© 2022 - 2024 — McMap. All rights reserved.