0

What is REST service and how it is different from web service. thanks

Thomas
  • 33,544
  • 126
  • 357
  • 626
  • 1
    http://en.wikipedia.org/wiki/Representational_State_Transfer – Quentin Apr 21 '11 at 08:53
  • possible duplicate of [Difference between REST and WebServices](http://stackoverflow.com/questions/1443160/difference-between-rest-and-webservices) – Fortega Apr 21 '11 at 08:56

6 Answers6

4

In a nutshell, a REST service is focussed around resources. A SOAP service is typically focussed around operations.

Note that both REST and SOAP services are considered to be web services if they are operating over HTTP, even though different protocols are used.

See here for more info.

Tim Rogers
  • 21,297
  • 6
  • 52
  • 68
3

You probably want to compare a RESTful web service with other web services. Check the link...

Fortega
  • 19,463
  • 14
  • 75
  • 113
3

Infact you cannot compare between REST & Web Service, as Web service/ WCF service makes use of REST. For details please check below links

http://www.oracle.com/technetwork/articles/javase/index-137171.html

http://en.wikipedia.org/wiki/Representational_State_Transfer

Ravi Vanapalli
  • 9,805
  • 3
  • 33
  • 43
2

It's a way of designing a web service.

Representational State Transfer

Diarmaid
  • 2,706
  • 2
  • 16
  • 19
2

it was asked before... Difference between REST and WebServices

another one.

http://www.ibm.com/developerworks/webservices/library/ws-restful/

Community
  • 1
  • 1
AnarchistGeek
  • 3,049
  • 6
  • 32
  • 47