How to change the settings of a Windows service while it is running?
Let's say I process files from one directory to another. I would like to be able to declare the output and operations for the following files (while the service is running). It would be ideal if I could edit it remotely through a website (SQL tables or possibly XML / TXT files).
Is this possible without restarting the service? Can I just write the internal service "for all operations of reading the file and output from the settings file"?
I would rather avoid using the Windows Communication Foundation.
source
share