restful web service 요약 http://www.xml.com/pub/a/2004/12/01/restful-web.html PUT for create, POST for update. GET object-list/ > get all objects PUT object-list/ > create new object GET object/id/ > get single object POST object/id/ > update .. DELETE object/id/ > delete .. http://jcalcote.wordpress.com/2008/10/16/put-or-post-the-rest-of-the-story/ Create = PUT iff you are sending the full content of the specified resource (URL). Create = POST if you are sending a command to the server to create a subordinate of the specified resource, using some server-side algorithm. Retrieve = GET. Update = PUT iff you are updating the full content of the specified resource. Update = POST if you are requesting the server to update one or more subordinates of the specified resource. Delete = DELETE.