Download ASP.NET Website Testing

I want to download an ASP.NET web service test. I have Visual Studio 2008 Professional Edition and Visual Studio 2010.

Can one of these products simplify load testing? I can’t find anything, and all Google returns are later releases of Visual Studio.

If not, then which of the alternatives.

Or better yet, is there a product in which I can submit it to IIS and it will essentially reproduce it?

+7
source share
3 answers

Is there a cheaper way to test load than upgrading to Visual Studio 2010 Ultimate
and there was also a tool called "MICROSOFT WEB APPLICATION STRESS TOOL", but I could not find its download, MS deleted it from its official page. this forum is for downloading http://forums.iis.net/t/1161284.aspx for use http://www.west-wind.com/presentations/webstress/webstress.htm

+5
source

There is a free Microsoft load testing tool called WCAT . This is a command line HTTP load generator that repeats a test case script. To avoid creating a script manually, you can write a test file to Fiddler and then generate the script using the WCAT Fiddler extension. This blog has step-by-step instructions that I tested, and it works.

When asked about reusing IIS log: check this source. It describes how to create a WCAT script by querying the IIS log using Log Parser. I have not tested it.

+6
source

Microsoft Visual Studio Team System 2008 Test Edition will also give you access to these tools. Unfortunately, none of the tools you mentioned include load testing capabilities.

You may be able to get a license for the 2008 Professional edition for Test, but now I doubt it.

Here are a few other questions with answers that may help you choose a tool.

+3
source

All Articles