bespectacled
bespectacled

Reputation: 2901

debugging azure errors: beginner

Pls point me to good resources to debug beginner errors with azure. If it ok posting my simple queue service code for the web and worker role, I could do the same and get some help.

Thanks.

Upvotes: 0

Views: 134

Answers (2)

Holger Leichsenring
Holger Leichsenring

Reputation: 811

I wrote a short article what helped me with debugging. You may want to have a short look here: Debugging in Azure Cloud

In a nutshell: Find the correct processes to attach to for worker role and web role. WebRole: WaIISHost.exe, w3wp.exe + conhost(s) WorkerRole: WaWorkerHost.exe + conhost(s)

Upvotes: 0

user152949
user152949

Reputation:

Troubleshooting and Debugging in Windows Azure: http://msdn.microsoft.com/en-us/library/gg465380.aspx

Upvotes: 1

Related Questions