• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Spring Security 2.0.4

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello guys,
I'm playing with Spring Security 2.0.4 in Spring 2.5. Basically I just want to authenticate users using LDAP.
My configuration is like this:


But in eclipse I get the following error
No setter found for property 'userDn' in class 'org.springframework.security.ldap.DefaultSpringSecurityContextSource'
No setter found for property 'password' in class 'org.springframework.security.ldap.DefaultSpringSecurityContextSource'

I'm wondering why is that happening. In the spring security's page seems to work in that way.
http://static.springsource.org/spring-security/site/docs/2.0.x/reference/ldap.html


How am I supposed to configure DefaultSpringSecurityContextSource to work?
How can I set the admin and the password if they are not available in the DefaultSpringSecurityContextSource ??

Thanks for your help on this.

JUST REALIZE THAT I HAD TO ADD THIS TO THE MAVEN POM (Besides the spring security).
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-core</artifactId>
<version>1.3.0.RELEASE</version>
</dependency>

 
Author
Posts: 84
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Shak,

You might find it easier to configure LDAP authentication (and Spr Sec itself) using the security namespace support instead of creating beans yourself. It's quite easy, especially for newcomers, to miss a critical bean or bean property when manually wiring the Spr Sec beans.

Peter
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic