Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I understand that I can debug an Azure Web Role using the methods outlined here: http://msdn.microsoft.com/en-us/library/windowsazure/ee405479.aspx

What's the process for debugging a Windows Azure Website?

I'd like to be able to step through code, set breakpoints, ect.

share|improve this question

3 Answers

up vote 5 down vote accepted

The answer is the same as the answer to the question How to debug (asp.net) website in any shared hosting provider?

  • Do your exception handling/logging properly
  • Use <compilation debug="true" /> while debugging (and only while debugging)
  • Enable all and any kinds of error reporting for the website (attached image below)
  • [insert here your favorite way of debugging shared hosting site]

Azure Websites Diagnostics

share|improve this answer
1  
Thanks astaykov. I guess I should have been more specific. I want to be able to step through code, set breakpoints, ect. You can do this with Web Roles using IntelliTrace, but I'm not sure how to do this with Azure Websites. – Paul Oct 26 '12 at 11:53
No entirely true for Intellitrace, as it is "historical debugging", rather than real-time debugging. But I agree that the Intellitrace is very powerful tool to diagnostics and debugging Web/worker Roles, although it only comes with VA Ultimate. And, as of today there is no option for Intellitrace logs collect from Azure WebSites. So you do your conventional trace collection. – astaykov Oct 28 '12 at 19:55

Scott Hanselman recently blogged about this here.

This isn't as nice a setting breakpoints, but having logged information streamed to the console makes debugging slightly less painful.

share|improve this answer

You can't step through code, since it's a shared hosting solution and they won't allow Remote Debugger connections. Use approaches outlined by astaykov

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.