Tagged Content List
  • Blog Post: Debugging HTTP Requests

    Using WCF application that has an HTTP binding often needs ability to monitor exact messages that are being transmitted. If you don’t like to use WCF message tracing and logging feature , you can try the alternative more accurate and easier way to capture HTTP traffic directly – using proxies. This approach...
  • Blog Post: WCF Tracing and Message Logging

    The most important thing when you are developing an application is actually the debugging process. If we are talking about WCF, tracing should help developer to debug WCF service by logging all operations on the service. How to enable trace Open the config file of the WCF service host using the Configuration...
  • Blog Post: WCF Debugger Visualizers

    Visual Studio 2005 has introduced a very nice feature called debugger visualizers which represents extensions to Visual Studio that drops in a custom user interface for visualizing types. This vizualizers allows you to visually view useful information about objects during debug which can often be a lot...