Hello guys,
I'm using the HTTP Referer header in my login page to redirect the user to the page he was after a successful login. I use "document.referrer" in the HTML/Javascript stand alone page.
The problem is that with the newest version of Firefox and Chrome the referrer includes the GWT cache in the URL of my webapps.
Example:
I got
https://www.example.com/com.xxx.portal.xxxxxxxxx/F7973D44FB82877B968930220546FF58.cache.htmlinstead of
https://www.example.comDo you know what I can do to get the right address instead of the one pointing to the cache?
Sure I can do an ugly patch in my login page to parse the string from referer, but I would like to have a clean method.
Thanks
Alexandre