3

What are the tools available to debug WCF service?.

Mike Pennington
  • 41,899
  • 19
  • 136
  • 174
sundar
  • 57
  • 1
  • 4

3 Answers3

3

Depends on what you mean by debug. Certainly there are a lot of tools that are useful when dealing with WebServices and WCF specifically, besides the obvious use of the Visual Debugger or WinDBG. Here are some:

tomasr
  • 13,683
  • 3
  • 38
  • 30
0

If its runtime hang or crash debugging, check out http://blogs.msdn.com/Tess/

MatteS
  • 1,542
  • 1
  • 16
  • 35
0
  1. Attach via visual studio. As long as you dont have express edition you can use Visual Studio to attach to WCF services. That would be step 1.
  2. Use the message logging.
    WCF Admin and Diagnostics
  3. Use the tracing WCF Tracing
Nix
  • 57,072
  • 29
  • 149
  • 198