http - Does REST send its payload in the URL of the request? What about SOAP? -
http - Does REST send its payload in the URL of the request? What about SOAP? -
do soap , rest set respective payloads url? example:
http://localhost/action/?var=datadatadata
i know soap uses xml , runs on different port on server, still submit info illustration above or send 1 big xml encapsulated packet port?
it depends on http method. method set url while post method set path info in url , rest of them streamed http request body.
soap should rely on http protocol , hence should follow same rule. check out http://www.w3.org/tr/soap12-part0/#l10309
http rest soap
Comments
Post a Comment