tags:

views:

282

answers:

3

Does anyone know of a web app published on the web for anyone to use to test a REST service and see the results? Must include authentication probing, caching etc.

I am trying to build an app on the iPhone using the Freeagent API but I'm not convinced the service is enabled properly. Want to make sure it's not my code.

+2  A: 

I use this little tool:

http://code.google.com/p/rest-client/

It's not accessed via the web, but rather as a standalone app that you can use to issue your REST calls.

davek
That looks neat!
RichardOD
A: 

It looks like SOAPUI now supports REST. I've not used it for that so can't comment on how good it is (though it is very good for SOAP Web services).

RichardOD
+1  A: 

Check out this online demo is an example of a RESTful Web Service

http://www.thomas-bayer.com/rest-demo.htm

Jonas Söderström