Diagnostic information for SoapHttpClientProtocol requests / respo

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jaans

    Diagnostic information for SoapHttpClientProtocol requests / respo

    (Using the .NET Framework 2 RTM)

    I'm inheriting from SoapHttpClientP rotocol to create a "proxy" class that
    interfaces with a 3rd party system using an HTTP SOAP interface.

    How can I trace / log / intercept / view the raw data from the request (to
    debug that what I send conforms to spec) and the response (again to debug) ?

    WSE has some tracing built in, but I cannot find anything for a
    SoapHttpClientP rotocol use.

    Thanks
  • Jaans

    #2
    RE: Diagnostic information for SoapHttpClientP rotocol requests / respo

    Found some very useful resources...

    * .NET has built in tracing for the System.Net (and other) namespace(s). To
    enable network tracing see
    Learn how to enable network tracing, which provides information about method invocations and network traffic for a managed application in the .NET Framework.


    * ProxyTrace from PocketSoap provides a HTTP Proxy through which to
    "channel" your SOAP requests (any http request for that matter) and log it.
    (see http://www.pocketsoap.com/tcptrace/pt.aspx)

    * SOAPScope from MindReef (very nice WebService diagnostic system) - (see
    http://www.mindreef.com/products/soapscope/index.php)


    Hope it helps!

    "Jaans" wrote:
    [color=blue]
    > (Using the .NET Framework 2 RTM)
    >
    > I'm inheriting from SoapHttpClientP rotocol to create a "proxy" class that
    > interfaces with a 3rd party system using an HTTP SOAP interface.
    >
    > How can I trace / log / intercept / view the raw data from the request (to
    > debug that what I send conforms to spec) and the response (again to debug) ?
    >
    > WSE has some tracing built in, but I cannot find anything for a
    > SoapHttpClientP rotocol use.
    >
    > Thanks[/color]

    Comment

    • Luke Zhang [MSFT]

      #3
      RE: Diagnostic information for SoapHttpClientP rotocol requests / respo

      Thank you for the shared information. Besides this, the Trace utility in MS
      SOAP toolkit is also a choice.

      Regards,

      Luke Zhang
      (This posting is provided "AS IS", with no warranties, and confers no
      rights.)

      Comment

      Working...