Reputation: 6986
I have a .NET desktop client application which references some .NET web services. I'd like to see the size of the responses the client application is receiving. Is there a way to do this? I've tried using Wireshark, but I can't see packets when the host and destination are both localhost.
Upvotes: 2
Views: 907
Reputation: 20157
I use SoapUI to test my web services and it will give detailed statistics on size of header, payload, etc.
Upvotes: 0
Reputation: 164331
Fiddler allows you to see and debug all HTTP traffic, also on localhost. You might need to setup proxy for localhost in the system.net configuration section.
Upvotes: 3