Chaitu
Chaitu

Reputation: 81

Unable to start debugging on the web server. The operation has timed out

I am receiving this error when I try to debug the application connecting through VPN.Any suggestions please

Upvotes: 8

Views: 13348

Answers (6)

ernesto petit
ernesto petit

Reputation: 1627

In my case I end the iis worker procees. Then in visual execute the process again and it worked.

enter image description here

Upvotes: 3

Daneesha
Daneesha

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

Bashar Abu Shamaa
Bashar Abu Shamaa

Reputation: 2029

Increase timeout of the Application Pool of your website on IIS from 90 to 120 (or even more), then restart IIS

Increase timeout of the Application Pool of your website on IIS from 90 to 120 or more then restart IIS

Make sure the pool for your website worked again after you restarted IIS

Upvotes: 3

Thisara Subath
Thisara Subath

Reputation: 743

I got the same issue and restart IIS works for me.

Upvotes: 2

Zaren Wienclaw
Zaren Wienclaw

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

Khushi4.net
Khushi4.net

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

Related Questions