Possible Duplicate:
what is RESTful/REST
Is ReST a protocol? and is it only for web apps?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
REST is less a protocol and more an… idea, if you like. It’s a system of building a web service which follows a certain set of principles, making everything simple and easy to use.
Taking from the stack overflow tag for REST:
It revolves around giving everything you’d want to request an ID, and accessing it – rather than calling a service which performs a specific task, you access a specific ID or set of IDs. It means all actions can be standardised using basic HTTP methods such as
GET,POST,PUT, etc.You can access a RESTful web service from anything, not just web apps.
But really, I could be here for quite a while explaining – as it’s been said, the best thing you can do is just give it a Google and spend an hour or so reading. Perhaps this might be handy.