performance-test

How to carry out performance test on our website

and our client need we to simulate 50 person to work at the same time on the website, and the response time should be within 5 seconds. But our concern is that if we test at their website, we can not control the network speed, hardware and so on. As that might effect our test result. and another thing is there are some antiforgerytoken i...

Why didn't see 10 records in database ?

I use JMeter to test my web application. and my test case is to add a record in database. and then I set the "number of thread user" to 20, it means that it will simulate 20 users work at the same time. and then I run the test case. But finally i found the system didn't create 20 records in database, but instead just create 13 records in...

Load-Testing a Java-Client-Server-Application

Hi, we use spring-remoting for a Client-Server-Application. Now we are in doubt how to realize a real load test with serialized objects. The problem is that many load testing toolkits are based on plain text HTTP communication, so it's very easy to parameterize the http-requests. Because spring-remoting is based on serialized objects w...

How to measure the time an application takes to start up in C#?

I have an GUI application that takes a while to load all its plugins, before it is ready to be used by the user. I want to write a C# program that would measure the time taken for this application to start up. I thought the Process.WaitForInputIdle() method would do the trick, but it doesn't. It exits as soon as the process is started. ...