You could do it like that, instead i just built the modified spring security and use that instead. I did that for two reasons, a) i placed the fix while debugging the actual src code, b) cause i...
Type: Posts; User: nvrs; Keyword(s):
You could do it like that, instead i just built the modified spring security and use that instead. I did that for two reasons, a) i placed the fix while debugging the actual src code, b) cause i...
Sure, as i stated above i have modified saveContext() of org.springframework.security.web.context.HttpSessionSecurityContextRepository so as not to flush the session if the authentication context is...
It's not a bug, Spring Security does not support long polling.
Check my question/answer on SO:...
Ok, after some debugging i have concluded the following:
After the DefferedResult is set the method flush() of org.springframework.security.web.context.SaveContextOnUpdateOrErrorResponseWrapper...
This is a bad idea in general, not using SSL for your whole site makes you vunerable to various attacks (session hijack for starters) and also creates problems since a session marked as secure cannot...
Hi all,
I am dealing with the wierdest of issues and having trouble to pin point the cause. I am using Spring 3.2 Milestone 1 to implement a service with long polling (long polling blog example)....
Hi all,
I have extended SavedRequestAwareAuthenticationSuccessHandler to create a custom handler that keeps track of users logins, logs them etc. but i am facing the following problem. Since my app...
I am using Spring 3.0.6 and i have a controller for uploading files to the server. I am using a script to upload using XmlHttpRequest for browsers that support it while the rest of the browsers...
And yeah, programming to an interface also worked
Ok thanks, i ll try that - sill me thought class proxying was on default
You mean to use class proxies by getting rid of AOP for aspectj proxies?
Hi all,
I have a @Service bean that implements the ApplicationListener interface in order to listen for some events which is @Autowired to a @Controller. However autowiring fails with
No...