开发者

ASMX Service Through HTTP Get vs REST

开发者 https://www.devze.com 2023-03-05 06:44 出处:网络
What is the difference between an asmx serv开发者_如何学运维ice that allows people to access it via http GET (or POST), without using SOAP requests vs a restful web service?There is no difference. A R

What is the difference between an asmx serv开发者_如何学运维ice that allows people to access it via http GET (or POST), without using SOAP requests vs a restful web service?


There is no difference. A RESTful service could be implemented using any server side technology including ASMX. Also a RESTful doesn't imply the usage of a GET verb. In a RESTful service you are using all the HTTP verbs. It's just that there are no SOAP envelopes.

0

精彩评论

暂无评论...
验证码 换一张
取 消