Hello-
I have asked this question on stackoverflow (
http://stackoverflow.com/questions/6444700/spring-security-custom-filter-cannot-read-from-post-parameter) and spring-security (
http://forum.springsource.org/showthread.php?110978-Spring-security-3-amp-SSO-with-pubcookie) however couldn't find a solution, re-posting here:
Essentially, I have a pre-authenticated scenario, where I have a custom pre-auth filter and if a certain form post variable is not present in the request the request is redirected to an external authentication system (pubcookie), the system authenticates the user and re-sends the request back to my application with the id of the authenticated user in a form post variable. The custom pre-auth filter 'should' succeed this time.
Problem is the form post data is being "lost", request.getParameter("x") always returns null. The filter is pretty basic, nothing
earth shattering. Tamper-Data shows the variable is present in the request.
I'm stuck with this issue for a week now, has any body seen such behavior?