I followed this tutorial: http://netbeans.org/kb/docs/websvc/rest.html and successfully deployed and tested my RESTful web service (from database) using Netbeans.
When I test this on Mac, Safari opens and the address in it is
file:///Users/<my username>/NetBeansProject/SampleDB/
It is not http://localhost:8080/.
I would like to test the GET and SET methods using some client. I did notice that on iOS restkit library provides a wrapper and one can build a test app to consume my web service. However, any app is going to need the IP and/or domain to send a request. I am not sure here how will my Web Service be accessed when I am deploying it through NetBeans+GlassFish.
It will be helpful if someone can point out how to go about this.