views:

40

answers:

3

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
A: 

Yes, SoapUI and Apache Jakarta JMeter

Sjoerd
+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.

http://httpd.apache.org/docs/2.2/programs/ab.html

Avi Flax
+1 Was aware of JMeter (although I've used Microsoft's old stress tool more) but ApacheBench looks really promising.
James Skemp