tags:

views:

2136

answers:

7

I know there is a tool that enables me to see what actually gets sent/received in my WCF application, that is it let's me see the actual SOAP messages being passed down the wire. The problem is I don't remember what that tool was called, and my Google skills are not of much help either. Anyone?

+4  A: 

Fiddler2 works, so long as you're using HTTP or HTTPS.

gregmac
+1  A: 

I would use Wireskark, it will capture just about everything.

palehorse
+1  A: 

some info here

XML From a Web Service Call

Gulzar
+4  A: 

I believe your looking for the Service Trace Viewier. http://msdn.microsoft.com/en-us/library/ms732023.aspx

A: 

I enable tracing for the service and use Microsoft Service Trace Viewer to look at them.

aogan
A: 

I'm not a WCF expert but I use Charles for all the HTTP sniffing sorts of tasks

Simon
A: 

Use WCFTestClient.

NiTRiX-Reloaded