Why Is HTTP/SOAP considered to be “thick”

后端 未结 8 1965
渐次进展
渐次进展 2020-12-13 02:34

I\'ve heard some opinions that the SOAP/HTTP web service call stack is \"thick\" or \"heavyweight,\" but I can\'t really pinpoint why. Would it be considered thick because

8条回答
  •  感动是毒
    2020-12-13 02:54

    I think it's mainly that the SOAP envelope adds a large amount of overhead to constructing the message, especially for the common case of a simple request with only a few, not-deeply-structured parameters. Compare that to a REST style web service where the parameters are simply included in the URL query.

    Then add to that the complexity of WSDL and the typical "enterprise" library implementations...

提交回复
热议问题