I have the following situation;
- a location only has a few hours of internet connectivity per day.
- this location has however a functioning WiFi network to connect local machines
I need to have a local server that can for a specific web application
- get POST requests and store them, waiting for internet connectivity to appear and then POST all those requests to the actual web server.
- get GET requests and execute + cache them if there is internet connectivity, if there is no internet connectivity; use the cache
This solution would preferably run on Windows ( potentially old versions ) and would have to be free or open source. I am pretty much resigned to write something myself, but I would rather ask this community first.
T.