I believe that may have been it! I was using 7.0.0 and moved to 7.0.5 and I think it fixed it. I'll need to do more testing - but thanks for the help!
Type: Posts; User: messofaperson; Keyword(s):
I believe that may have been it! I was using 7.0.0 and moved to 7.0.5 and I think it fixed it. I'll need to do more testing - but thanks for the help!
Attached are logs from a failed login attempt from both tamper data and spring (sorry it's a zip, the spring logs are over the .txt limit)
Ok well, I enabled logging and looked through it (DEBUG level so there's a lot), the first difference is the following (between a successful and unsuccessful login):
Successful:
2011-01-10...
The server log from the events:
10.20.30.104 - - [04/Jan/2011:12:29:59 -0500] "GET / HTTP/1.1" 302 -
10.20.30.104 - - [04/Jan/2011:12:29:59 -0500] "GET /client/Main.html HTTP/1.1" 302 -...
(I had to remove some things - downloading the favicon and whatnot, to meet the max input limit)
Ok, looks as though it's always Secure and using HTTPS but I could be wrong.
Dump (first login successful, second failed)
12:30:19.472[227ms][total 227ms] Status: 302[Moved Temporarily]
GET...
Well, here's the thing. When I go to
http://server:8080/
it redirects me to https://server:8443/login.jsp, as it has been configured to do so.
I log in, I land at...
I'm having a strange issue when using form-login (http-basic works just fine), regarding where someone lands when they first get to the server.
Here is my security config:
<?xml version="1.0"...
Heh, referrals. Problem solved:
<bean id="contextSource" class="org.springframework.security.ldap.DefaultSpringSecurityContextSource">
........
<property name="baseEnvironmentProperties">...
As it stands, we have groups (authorities) located in two (or more) locations in our AD.
<bean id="authoritiesPopulator"...
Is there any way to have a user login through a Flex client running on a different webapp (this is on Tomcat), and then have those login credentials transferred over to a spring application (which is...
Ok - different question then, I guess.
What's the spring security 2.0 equivalent for
<security:authentication-provider ref="ldapAuthProvider" user-service-ref="userService" />
Since it appears...
I think the correct way to do it is to put
<authentication-provider ref="ldapUserDetailsService" />
And take the <property name="userDetailsService" ref="ldapUserDetailsService" />
out of the...
Is it possible to make the authentication manager use a specific auth provider?
This is my setup:
in springContext.xml:
<!-- LDAP Beans, the ldapAuthProvider and its contextSource -->
<bean...