For the interested, here is the solution:
<filter>
<!-- The name of the filter must the same than the FilterChainProxy bean -->
<filter-name>filterChainProxy</filter-name>
...
Type: Posts; User: romain.vdk; Keyword(s):
For the interested, here is the solution:
<filter>
<!-- The name of the filter must the same than the FilterChainProxy bean -->
<filter-name>filterChainProxy</filter-name>
...
Hi everybody,
I'm posting here because I'm trying to create some spring web app, but I fail to launch a controller... Maybe I miss something.
Here are my config files, so you can have a look. I...
According to this documentation, not :)
Anyway, I also tested that and I get the same error ...
Yes, it just change anything. In facts, I began with that (so is the debug method) because I think it's a very good practise to set it, but I removed when seeing it wasn't working. Sadly, it's not...
Hi everyone,
I post that here as it's related to the REST webservices, and I don't find any message related to my issue ... I really don't understand what's wrong, because on the paper everything...
Thanks,
I've found another way, to avoid using the hash symbol ;)
Hi,
I've a simple question, but I don't know how to google it efficiently, so I ask it here.
Is there any simple way to catch the value of a javascript parameter?
I explain with a small example:
...
Yes, your solution is as good (probably even better) as mine. I will try to set it up.
I'm just a beginner in Spring Security so I don't know every trick and every tool yet :) And has time is very...
This is not exactly what I wanna do. I've rewritten a filter to do this.
Here is the configuration:
<beans:bean id="preAuthenticationFilter"...
I there,
I've a question I cannot solve after some googleing for you.
I'va my running spring security application. That's great. When a access a protected page, spring security asks me for the...
I do have a messagesource, and it's working perfectly in my Spring Controller ...
It's configured like this :
<!-- Spring MVC Controller -->
<bean id="myController"...
I'm using it with spring-security ... I've duplicated the post here http://forum.springsource.org/showthread.php?t=92956 so it's mayber more accurate in the "Spring Security" topic :)
Hi there :)
I've a little question for you : I'm writing an i18n application with the language chooser in my spring security form. This form is processed by a custom filter.
I wish to set the...
Hi everybody,
I've a little problem. Probably a simple thing but I don't have found the solution. I expose the problem:
I have a login page, that allows the user to select his language. Until...
thanks for your last post, it pointed out exactly what was wrong in my config file. I've modified the two bad beans:
<beans:bean id="languageFilter"...
no idea for that?
I'm sure of that. Last time I modified my web.xml file was a lot of days ago, to setup spring security ... Since when it has worked withe the first security.xml file, and when I modify it to add my...
Ok, Some new things:
I got this error now : java.lang.IllegalArgumentException: authenticationManager must be specified
at org.springframework.util.Assert.notNull(Assert.java:112)
at...
I agree, and I think it's linked to something in my applicationContext-security.xml file, as if I remove the custom filter lines (the beans:bean and the custom filter itself) and put the default...
Every page gives a 404 error.
It's hard to belive that there is no error, but there is noting in the tomcat log files (catalina.log , stdout.log , manager.log and localhost.log ) ...
Thanks for those replies :)
I tryied to remove the extra default form-login, but now, the application loads properly and .... make a 404 error when I request a page.
Strangely, there is no...
Ok, I tried to create a filter like this, but the webapp doesn't launch :confused:
Here is my config XML:
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans...
I tried to implement this one : http://tejakantamneni.wordpress.com/2008/08/23/spring-security-using-custom-authentication-processing-filter/
But it seems that the version is not correct : when I...
what do you exactly mean by "the web tier" ?
I do not need those informations for the authentication, just to catch them and save them somewhere they can be read by Spring (for i18n in my case).
...
Hi everybody,
Here is my problem : I'm building a custom login form, with a username, a password and some others fields. When I submit the form, the login/password is successfully checked withe te...