Amit
Amit

Reputation: 49

is restful get and httpget different from one another?

I am totally new in this field.. May b my question is also vague.. But while searching i came across 2 different implementation.. One is this and other is this , where httpget is used..

So are these same ? When we talk about Restful, is the 2nd implementation valid ?

Guide me please.

Upvotes: 0

Views: 30

Answers (1)

U r s u s
U r s u s

Reputation: 6978

RESTful is a design pattern for web applications that expose a public interface.

It uses the HTTP protocol to send and receive data.

GET, POST, PUT and DELETE are the operations that RESTful most commonly perform with that data.

All these operations are HTTP operations (but PUT and DELETE need more work. Check this post for details).

So, to cut a long story short, GET and HTTP GET are the same.

SO has a wealth of resources to get you started with RESTful. Understanding the difference between SOAP and REST maybe a good starting point.

Upvotes: 1

Related Questions