Krzysztof Kozmic
Krzysztof Kozmic

Reputation: 27384

Tool to Peek into WCF SOAP message

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?

Upvotes: 3

Views: 8777

Answers (7)

nithinmohantk
nithinmohantk

Reputation: 457

Use WCFTestClient.

Upvotes: 1

aogan
aogan

Reputation: 2271

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

Upvotes: 0

Simon
Simon

Reputation: 80869

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

Upvotes: 0

Mitch
Mitch

Reputation:

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

Upvotes: 5

Gulzar Nazim
Gulzar Nazim

Reputation: 52198

some info here

XML From a Web Service Call

Upvotes: 1

palehorse
palehorse

Reputation: 27516

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

Upvotes: 1

gregmac
gregmac

Reputation: 25321

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

Upvotes: 5

Related Questions