Reputation: 9617
I wrote a web service in C#. Now, i need to test the web service traffic to get information like (how long does it take to get response, how many responses can be handled in an hour etc. pretty much statistics about the web service). Is there any tools (free/paid) to get this information?
Upvotes: 2
Views: 527
Reputation: 5333
If your services use WCF techology, you can use WCF performance counters. Enable them using this configuration:
<configuration>
<system.serviceModel>
<diagnostics performanceCounters="All" />
</system.serviceModel>
</configuration>
It includes pretty much everything you need.
Upvotes: 2
Reputation: 338
There are variety of load testing tools if that is what you are looking for. I'm not sure how well they work on custom web services or how to implement them but you could start with soapUI (http://www.soapui.org/About-SoapUI/what-is-soapui.html) or WCAT(http://www.iis.net/community/default.aspx?tabid=34&i=1466&g=6) the latter of which is typically for IIS. I have no idea how you built your webservice though so its just a suggestion
Upvotes: 0