views:

237

answers:

1

I have a C# app that is sending soap requests over an https channel. Is there any way I can add tracing to just dump every request into a log file? I am getting an error, so im not sure if what I am sending is proper.

+3  A: 

I use Fiddler, the HTTP Debugging proxy.

It works with SSL if you enable it properly.

Cheeso
This worked like a charm, thanks!
Zenox