Tools to Debug WCF service [closed]
Closed 6 years ago.
- We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
- 开发者_JS百科This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
What are the tools available to debug WCF service?.
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:
- WCF Tracing
- Service Trace Viewer
- TCP monitoring tools, like WireShark or TCP tunnels like TcpTrace or Fiddler
If its runtime hang or crash debugging, check out http://blogs.msdn.com/Tess/
- 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.
- Use the message logging.
WCF Admin and Diagnostics - Use the tracing WCF Tracing
精彩评论