i have a problem. I am developing ASP.NET app with WCF service. There is a custom session manager, which based on SessionID. I'm keeping session ids in static class, which stored in assembly with WCF service.
Sometimes, WCF service unexpectely restarts (or recreates?) and session manager clears with all ids of opened sessions. It's unacceptable in this project.
I readed about the InstanceContextMode/ConcurrencyMode attributes and a set them to "Single", but it has no effect: WCF service restarts all the same.
How to disable WCF service restarting?