Click here to Skip to main content
16,005,121 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am developing a web load testing tool which consist of 4 modules.The first module is to calculate response time of the website. so i need your help in this module.
Posted
Updated 12-Feb-12 23:05pm
v2
Comments
surajsawardekar 13-Feb-12 10:24am    
Do u have java code for this????

1 solution

You can test this several ways, the best though would be round trips with intentional load.
Write a simple client that can test the API and have it fire in requests, seeing how long they take = round trip.
On the server record when a request is received and when the response is sent = service time.

When you have your client, running several concurrently will simulate load; try 1, 10, 100.
You'll need to do several requests to make sure you get a good average time, I would suggest sending 100 messages per client per test.

Now you have your numbers, look at the round trip and service times and see how they change.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900