Hi everyone,
I have an application that insists on a user being logged in before they can access specific resources. Currently, if a user who is not logged in, attempts to access these resources, they are simply redirected to the login page. This works fine and is implemented using an interceptor. I now want to enhance this behaviour so that, on successful login, they are forwarded to the original page requested. This means I need to save the original URL requested, including arbitrary parameters, and forward to this URL from the login page. Can anyone advise on the best way to do this? Cheers, Steve