Master
Master

Reputation: 2153

Remote Debugging of Azure Web Application

I'm currently using visual studio 2017 and trying to attach the debugger to my web app. I've deployed my app and i've attached the debugger through VS. I've also ensure on the azure portal that remote debugger is turned on. I've also went to https://xxxxxxxx.scm.azurewebsites.net/ and checked the processes and w3wp is available. From Unable to start debugging in VS2015 for Azure web app and Remote Debugging - Web App Azure it indicated to me it could be a port being blocked. so i went ahead and set my firewall outbound to allow the connections from UDP 3702 TCP 4020 TCP 4021 and ports 4022 and the problem still persist. I'm unable to connect to my connection target.

I've tried xxxxxxxxx.azurewebsites.net:4022 and xxxxxxxxx.azurewebsites.net

enter image description here

I'm all out of ideas and suggestions from the web. If anyone else has tips, that'll be great.

Upvotes: 0

Views: 2301

Answers (1)

Fei Han
Fei Han

Reputation: 27793

unable to connect to my connection target.

Please refer to this article to configure the firewall to enable remote debugging for VS 2017.

enter image description here

Remote debugging works for me using VS 2017 with following steps:

Turn on Remote debugging and choose VS 2017

enter image description here

Find and attach to process

enter image description here

Please try to enter {your_web_app_name}.azurewebsites.net:4022 and click Refresh button to check if you can see available processes.

Besides, you can right-click your web app, and then click Attach Debugger to remote debug the web app in Server Explorer.

enter image description here

Updates:

Get publish profile on portal

enter image description here

Upvotes: 5

Related Questions