camilo
camilo

Reputation: 11

What's the difference between RESTful web service and one that isnt?

I've read and seen many videos about REST but I still don't get whats the difference between using REST and just working with http requests.

Upvotes: 0

Views: 25

Answers (1)

Jörg W Mittag
Jörg W Mittag

Reputation: 369420

A ReSTful web service is a web service that satisfies the constraints set out in Roy Fielding's PhD Disseration Architectural Styles and the Design of Network-based Software Architectures. If it doesn't, then it's not ReSTful.

Upvotes: 2

Related Questions