I developed WCF service with InstanceContextmode set to single and hosted by IIS. Periodically, the service is probably restarted by IIS. How can we adjust the way IIS manages the lifetime of this service in singleinstance mode?
How IIS control WCF lifetime service wiith InstanceContextmode set to single?
103 Views Asked by stovpc At
2
I highly recommend you not to host your WCF service inside IIS. There is a simple and minimal way to self-hosting. By self-hosting, I mean that your WCF app hosted itself inside ITSELF. Here is a good sample code for that: https://github.com/amiru3f/ws-security After self-hosting, you can simply create a windows service with nssm to ignore deprecated weak IIS.