I made a JSF web application. It was generated in netbeans ide.
To prevent pages being unresponsive I've set pages to auto-refresh in a set time interval.
I have a list page like this List of records
And I can create a record like this create a record
Say, I have set auto-refresh to every 30 seconds. I create a new record and return to list page. After 30 seconds it will give me this error: "Resubmit form? To refresh this page, your browser needs to repeat any actions you've already taken. For example, if you've already entered info into a form, your info will be resubmitted to the site".
This only happens if I access from another computer. From localhost it just redirects to list page without error popping up.
It seems like when I click to load create page, this action is remembered and when list page is refreshed it refreshes the create page.