Possible Duplicate:
How to get Url Hash (#) from server side
I am using Spring security to protect resources on our application. Unfortunately, spring does not store the full url's that include a # . E.g.:
example.com/account/file#1234
The #1234
is not stored in the request cache before being redirected to the login page and the security process. Once returned from authentication, the url redirected to is :
example.com/account/file
Is there any way to make spring store the full url?