Thanks a lot Luke, I changed all the spring security jars to 3.0.2 and it works fine now.
Type: Posts; User: Jwileman; Keyword(s):
Thanks a lot Luke, I changed all the spring security jars to 3.0.2 and it works fine now.
I have exactly the same problem. I've changed the spring-security-web jar to release 3.0.2, but still get the same problem. Does anyone know which specific jars need to be changed to correct this...
I had exactly the same problem as people on this forum had: the 404 error-code whenever trying to login/logout of an application using Spring security. The error only occurred on WAS for me, but the...
I tried the following, which made no difference:
1)
<property name="defaultTargetUrl" value="/secure/enter_transform.htm" />
@Controller
public class ForwardingController {...
Thanks for your reply Luke.
I made the following change to speds-security-context.xml:
<property name="defaultTargetUrl" value="/secure/enter_transform.htm" />
and the following change to...
Thanks for the reply. Unfortunately, it doesn't look like you can do this, as I get the following error when the beans load up:
Property 'defaultTargetUrl' threw exception; nested exception is...
I added the following line to both the GET and POST method of the controller:
System.out.println(request.getMethod());
Obviously, in the GET method of the controller, "GET" is printed, and in...
I've just posted a log and I noticed I have exactly the same problem as you:
http://forum.springsource.org/showthread.php?t=72131&highlight=POST+controller
Unfortunately I don't have a clue as...
I've just noticed a bug in a fairly simple system I built using Spring security/Spring MVC. Here's a bit of background about what the system does:
There are 2 pages, the logon page, and the main...
Hello Spring community,
I'm new to Spring and even newer to Spring Security.
My questions is:
how do I create a custom LogoutFilter? Basically, when a user clicks on the logout, I want to audit...