I have a WCF Service that I am hosting on AppFabric with IIS 7.5 and Windows 2008. The service is set to auto start as recommended. When the service starts it goes into a while loop that never ends, keep in mind that this is the desired behavior. The while loop is supposed to process some data that I don't know when its going to be available.
The problem is when I shut down the website, or IIS, the service keeps running. So my questions are:
Is there a way to identify that IIS or the website had been stopped?
Is there a better way of achieving this never ending behavior?
Hopefully there is enough information here.