We have an old windows xp machine with no internet access (cannot be upgraded). Currently we have the following logic in place:
- System generate an txt file based on user modifications via intranet.
- Java read the txt file and generates a formatted HTML file using freemarker every 20 seconds.
- The generated HTML file is opened in the morning and kept open all day for users to view, HTML has an auto refresh of every 10 seconds to reload the new HTML file generated in step 2.
Ideally there won't be any user interactions on this machine.
I want to eliminate the discrepancy by having the HTML check either the checksum of the txt file or HTML file. Refresh once it detects a change.
The limiting factors are it needs to be IE 6 compatible and ideally with something that is built-in for windows xp (javascript?)
Thanks!