Why isn't SOAP-based web service RESTful?

后端 未结 7 1449
无人及你
无人及你 2021-01-29 20:54

I understand RESTful is an architecture style, but what exactly makes SOAP-based web service not count for RESTful?

It\'s not clear to me which points below (from Wikipe

7条回答
  •  自闭症患者
    2021-01-29 21:24

    One of the objectives of REST is cachability, for that the resource needs to be identified by the uri (query string). In soap the request is posted, therefor for different requests you have the same uri and thus the resource cannot be uniquely identified by the ur

提交回复
热议问题