I am receiving this error when I try to debug the application connecting through VPN.Any suggestions please
Asked
Active
Viewed 1.1k times
8
-
This is a duplicate of https://stackoverflow.com/questions/42304475/unable-to-start-debugging-on-the-web-server-the-operation-timed-out/52487599#52487599 – John Smith Sep 24 '18 at 21:38
6 Answers
17
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.

Khushi4.net
- 329
- 1
- 15
-
1Make sure you run the commands in admin and that you have permissions. – Zaren Wienclaw Sep 13 '18 at 14:58
3
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

Bashar Abu Shamaa
- 1,998
- 2
- 21
- 36
0
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.

Zaren Wienclaw
- 181
- 4
- 15
0
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.

Daneesha
- 313
- 4
- 10