Hi,
Did you configure your Ajax request url pattern in Acegi to redirect to your login screen?
After submitting your login user/password the XTAjaxAuthenticationProcessingFilter should be...
Type: Posts; User: walpod; Keyword(s):
Hi,
Did you configure your Ajax request url pattern in Acegi to redirect to your login screen?
After submitting your login user/password the XTAjaxAuthenticationProcessingFilter should be...
The acegi context contains:
<bean id="authenticationEntryPoint" class="util.XTAjaxAuthenticationProcessingFilterEntryPoint">
<property name="loginFormUrl" value="/login.form"/>
<property...
I am using acegi in combination with spring mvc.
Now I would like to introduce a reference from the acegi spring context to the mvc context. This isn't working (BeanCreationException: ... Cannot...
Hi,
I was curious about my proposed solution so I tried it out.
Although the implementation is a bit more complicated than I anticipated (one has to decide if the Acegi SavedRequest is an ajax...
Hi,
You will not have this problem if you are setting "alwaysUseDefaultTargetUrl" as I do:
The drawback is that you are losing the original URL for all requests not only for ajax requests. If...
Hello Guillaume,
Find the source in the attached zip file.
In fact a refactoring of the AuthenticationProcessingFilterEntryPoint class would reduce this class to a few lines. To build the...
Hi,
I had the same problem and found a simple solution by extending the Acegi AuthenticationProcessingFilterEntryPoint.commence() method:
If it is an ajex request then do the XT Ajax...
Exactly!
http://opensource.atlassian.com/projects/spring/browse/MOD-343
thanks for your support,
regards,
Walter
Yes, this gives me full control over all parameters.
On the other hand I am not really satisfied with this solution.
I played a little bit around and tried to use...
Hi,
In a special case I am using get parameters to initialize some form values.
If I do an ajax action call afterwards these parameters are contained twice in the ajax query string. The first...