up vote 5 down vote favorite
1
share [g+] share [fb]

I'm fooling around with WCF, and would like to see how many messages I send/receive, and how large these messages are.

I tried activated WCF tracing, and ended up with a real huge trace file, but I found no way to extract the simple message size from this.

There sure must be some way to get this? Maybe I missed some parameters in tracing?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

The WCF Service Trace Viewer tool allows you to open the huge trace file and analyze many aspects of your messages. Make sure you've also turned on message logging, so the messages themselves get logged too (with properties such as size...)

link|improve this answer
Hi Jacob, can you be a bit more specific? I've turned on full message logging. Still couldn't find the message size anywhere. – Krishna Apr 5 '10 at 11:41
I have also checked trace viewer and I dont see an option for MessageSize – Signcodeindie Sep 7 '11 at 16:15
feedback

Besides using something like Wireshark (nee ethereal) you could look at something like Fiddler which has other benefits as well. It shows content length for all request/response and allows you to view the content in several ways.

link|improve this answer
feedback

you could also build interceptors in WCF and capture and log this information on your own.

http://msdn.microsoft.com/en-us/library/ms751495.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.