Hi
I'm relatively new to spring security so bare with me...
We have a gwt application, this means that all the urls in the application look like this:
localhost:8080/GwtApp/gwtapp.html#whatever
Our applicationContext includes:
Re-producing our problem:Code:<security:http auto-config="true"> <security:intercept-url pattern="/login.jsp*" filters="none" /> <security:intercept-url pattern="/**" access="ROLE_USER" /> <security:form-login login-page="/login.jsp" always-use-default-target="false" /> <security:remember-me /> <security:logout invalidate-session="true" logout-success-url="/login.jsp"/> </security:http>
1. user tries to go to a secured resource, e.g.
localhost:8080/GwtApp/gwtapp.html#whatever
2. user is re-directed to login.jsp
3. user logs in
4. user is redirected to localhost:8080/GwtApp/gwtapp.html
The problem is that the url anchor/fragment (i.e. the #whatever) is dropped.
Can anyone shed any light on this?
Many Thanks
Nat


