This seems to be a fairly common problem when googling, though I can't find any good solutions.
Here's my scenario. I've got a Java servlet located on a protected page. The user logs in to get to this page.
Then the user begins to type some data into the form.
While this is going on, I upload a new version of the webapp to my site.
The user then goes to hit submit and his form data is lost when he gets sent to the login page. It appears the form data does not stay on as a parameter on the login screen to forward to the POST original target.
I understand the common problem when the user times out from inactivity, but in this case, I terminated their session by uploading a new version of code to the website.
Any thoughts how I can save this POST form data?
Start Free Trial