커뮤니티
WebSC Q/A
제목:    What is REST and RESTful web services?
  701   John Lorenzo Bautista
Is there differences between REST and RESTful ws? Or it's basically the same?
 
John Lorenzo BautistaREST stands for REpresentational State Transfer (REST) its a relatively new concept of writing web services which enforces a stateless client server design where web services are treated as resource and can be accessed and identified by there URL unlike SOAP web services which were defined by WSDL.
Web services written by apply REST Architectural concept are called RESTful web services which focus on System resources and how state of Resource should be transferred over http protocol to a different clients written in different languages. In RESTful web services http methods like GET, PUT, POST and DELETE can can be used to perform CRUD operations.

For more information about RESTful, please check this post:
http://www.wins.or.kr/DataPool/Board/xxxx/14xx/1441/25-2_112_120[1].pdf
2014-03-27 15:41+