I have a windows service (Win32 Service API) mostly designed that will generate images from data in a frequently updated text file. The idea being that these images can then be referenced by an html file to satisy a client requirement.
There will also be varying text data from the file in that html.
what I'm wondering is.....
--- whether it makes sense for this same windows service to also generate that html (htmlwriter). On the one hand, it seems sensible. On the other hand, it WAS my idea so it is inherently subject to scrutiny.
Another option is having the html (javascript) query the service for any updates to the html?
--- finally, timer vs. file watcher as the event to trigger the image generation?
Almost all opinions would be appreciated ;) thanks.