We have web-application with REST interface. Is there some tools to test it?
A:
rest services should be easy to test with jmeter (http://jmeter.apache.org)
Nikolaus Gradwohl
2010-06-22 11:49:06
+2
A:
A RESTful web app/API is just HTTP, so no specialized tools are needed to test performance (as opposed to functional testing, where specialized tools could be helpful). You basically just need to make a lot of HTTP requests and record the results.
I prefer ApacheBench to more complex tools such as JMeter. It's very simple and easily scriptable — just write a shell script. I also find it oriented on HTTP, while tools like JMeter are designed to support simulating human usage patterns.
Avi Flax
2010-06-22 12:29:14
+1 Was aware of JMeter (although I've used Microsoft's old stress tool more) but ApacheBench looks really promising.
James Skemp
2010-06-22 12:35:27