How to repeat HTTP requests multiple times and simultaneously, without delay?

3

I need a way to send link multiple times without changing any requests.

Currently I've been using Charles Proxy - I get the request from an iphone app so I can repeat it on my computer. Charles Proxy repeats as many times as necessary, but with a certain delay between requests. I noticed that the server does not accept the same request if it is sent after 200ms. So I needed a program or other medium that could send 30 requests, for example, all at the same time, without delay. Is there any way to accomplish this?

I have no control over the server, which is not mine. I just get ready-made iphone requests and I repeat on windows.

    
asked by anonymous 16.05.2014 / 19:20

1 answer

1

Apache JMeter is able to perform the load test you need. It's free and open source.

Just remember that sending too many requests to a server can knock you down or slow you down, generating something that will be considered a Denial of Service Attack, Denial of Service (DoS) in English. This is especially serious when the server is not yours.

    
21.05.2014 / 02:41