Reputation: 81
I am receiving this error when I try to debug the application connecting through VPN.Any suggestions please
Upvotes: 8
Views: 13348
Reputation: 1627
In my case I end the iis worker procees. Then in visual execute the process again and it worked.
Upvotes: 3
Reputation: 425
In my case it was because I had a browser window already open and I was running the application. When I closed the all the browsers and started running the application it worked. This was the case for both Edge and Chrome.
Upvotes: 0
Reputation: 2029
Increase timeout of the Application Pool of your website on IIS from 90 to 120 (or even more), then restart IIS
Make sure the pool for your website worked again after you restarted IIS
Upvotes: 3
Reputation: 191
I had the same issue and I fixed it by doing a DNS flush: ipconfig/flushdns
in command prompt.
You can also reboot your computer. Turning it off and back on again is usually the quick fix to all IT problems.
Upvotes: 1
Reputation: 349
To solve this I did reset of IIS as per below command:
iisreset /stop
iisreset /start
If not simply rebooting the system will also work.
Upvotes: 19