Brandon Montgomery
Brandon Montgomery

Reputation: 6986

Is there a way to measure the size of a web service response?

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

Answers (2)

Jesse C. Slicer
Jesse C. Slicer

Reputation: 20157

I use SoapUI to test my web services and it will give detailed statistics on size of header, payload, etc.

Upvotes: 0

driis
driis

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

Related Questions