How to load a test web application developed in asp.net mvc3?

I want to download a test web application that we are working on? Can you name some kind of automated load testing tool for a website developed in asp.net mvc3? I would like to design it for 100 concurrent users, 200 users, and so on. We want to test it with many users and test the load generated on the app and server.

By the way, we also run a profiler to find application bottlenecks so we can find slow code that we can improve.

+3


source to share


4 answers


There are several different options; they differ in all kinds of interesting ways.

I use the open-source Apache JMeter for this kind of testing - it's not very user-friendly, but very effective when you get used to it and the lack of licensing restrictions means you can use it in all kinds of configurations.



Several of our projects have glued JMeter into a continuous integration loop by running performance tests on nightly builds. Some projects need to scale to a huge number of users and we are using JMeter in the cloud (there are some service providers who can do this too).

it works great with Asp.Net MVC apps.

+3


source


We are currently loading our MVC application and an external company is using the LoadRunner product.



However, depending on how complex your testing is, you can use the class WebClient

as a base to run your own volume tests.

0


source


Web Page Performance Load Tester works great with .NET applications. We are testing a lot of these (disclaimer: I work for Web Performance and is closely related to the product).

0


source


We have integrated with Fiddler load testing tool called StresStimulus

0


source







All Articles