Hello All,
We have a J2EE application deployed on tomcat (https). Users are getting a “Warning: Page has Expired” message when they try to click on back button. Users are required to check “Do not save encrypted pages to disk”. Is there any workaround to fix this? (I think whenever they click back button check if action=submitted, if not show the form; may work.)
Thanks
Puru
-
Https and browser back button issue (3 messages)
- Posted by: Puru Kk
- Posted on: April 04 2005 09:14 EDT
Threaded Messages (3)
- Https and browser back button issue by F. A. on April 05 2005 17:35 EDT
- Https and browser back button issue by Puru Kk on April 06 2005 11:36 EDT
- Https and browser back button issue by Golden Eye on April 15 2005 04:00 EDT
-
Https and browser back button issue[ Go to top ]
- Posted by: F. A.
- Posted on: April 05 2005 17:35 EDT
- in response to Puru Kk
I suspect that this problem is exhibited after a user submits a form?
If this is the case, you should have the form submit to the action via POST and redirect to the same action (implicit GET).
A. -
Https and browser back button issue[ Go to top ]
- Posted by: Puru Kk
- Posted on: April 06 2005 11:36 EDT
- in response to F. A.
Yes, this problem occurs after user submits a form on Page A and gets redirected to Page B. On Page B clicks browser back button.
Thanks
Puru -
Https and browser back button issue[ Go to top ]
- Posted by: Golden Eye
- Posted on: April 15 2005 04:00 EDT
- in response to Puru Kk
As far as I know, the expires header merely works if you submit twice.
for example, screen A ->submit->screen B ->submit->screen C
Besides, you should use "POST" method in each submit. Then, when you click on Back button, the page is going to expire.