How do I measure the time elapsed when calling a WCF Webservice?
Posted
by Manuel R.
on Stack Overflow
See other posts from Stack Overflow
or by Manuel R.
Published on 2010-03-24T17:43:59Z
Indexed on
2010/03/24
18:03 UTC
Read the original article
Hit count: 254
wcf
We want to track the time taken by a web service call between a client and the server. This time should not include the time taken by the server to process the request. The idea is that we want to see how much time of a web service call is lost due to the actual transfer trough the network.
Does WCF already offer something in this direction?
Of course I could just add a timer on the client and subtract the server processing time but that wouldn't be very elegant.
© Stack Overflow or respective owner