Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET Log Soap Request on Client

I'm consuming a third party .NET WebService in my client application. For debugging purposes I want to capture the SOAP requests that are being sent from my server. How would I go about doing this? This is being done on .NET 2.0 without the use of WCF or WSE.

like image 915
Wes P Avatar asked Sep 29 '08 17:09

Wes P


3 Answers

I wrote a post about this a while ago titled "Logging SOAP Messages in .NET".

The easiest way is to use the tools already provided with .NET.

1. Extend the class SoapExtension.

2. override the method ProcessMessage to get a full output of your Soap Request, then output this information to a text file or event log.

public class SoapMessageLogger : SoapExtension
{
  //…
  public override void ProcessMessage(SoapMessage message)
  {
    switch(message.Stage)
    {
      case SoapMessageStage.BeforeDeserialize:
        LogResponse(message);
        break;
      case SoapMessageStage.AfterSerialize:
        LogResponse(message);
        break;
      // Do nothing on other states
      case SoapMessageStage.AfterDeserialize:
      case SoapMessageStage.BeforeSerialize:
      default:
        break;
    }
  }
  //…
}
like image 137
Steven de Salas Avatar answered Sep 21 '22 15:09

Steven de Salas


If it's for debugging purposes I'd just configure the web request to use a proxy and send the entire request though fiddler (http://www.fiddlertool.com) then you can see exactly what's getting transmitted over the wire.

like image 30
Walden Leverich Avatar answered Sep 22 '22 15:09

Walden Leverich


There are many options you can use. There are certainly some commercial tools for this (like SOAPScope), but if you're just looking to capture the raw contents of the requests/responses there are several tools out there besides Fiddler (that Walden mentioned already).

Personally, I've been a long time user of Simon Fell's TcpTrace and YATT.

If you're interested in actually instrumenting the code so that it can do it on its own (say, by logging everything to a file or something), then you might want to look into implementing a SoapExtension on your server.

like image 36
tomasr Avatar answered Sep 18 '22 15:09

tomasr