views:

530

answers:

3

Is there a way in C# .NET to view the complete SOAP message I am sending to a web service without digging through a bunch of properties in a Quick Watch window? I have added a web reference to a console app, generated the proxy classes, and I'm stepping through some code but how do I view what is actually being sent?

+1  A: 

Use Fiddler. It's awesome. You'll love it.

http://www.fiddler2.com/fiddler2/

David
A: 

OK... I installed Fiddler, have you used it with HTTPS requests?

Still_a_moron
A: 

Never mind... got it working. Had to make an adjustment in my cert store.

Great suggestion, I've been looking for something like this for quite a while.

Thanks!

Kind_of_a_moron