I have a c# web app that was developed under vs2015 / iis express and a console app that runs on the same box. I had set up a named mutex to mitigate file access contention and all worked great.
The console app created the mutex "IPC" and the web app opened it as an existing mutex.
Once I deployed that web app and console app to the production server (2008 r2/iis) the two apps cant see each others mutexes and the whole scheme comes crashing to the ground.
Is there a way to get around this?