Difference between revisions of "Cloud Service:Protocols"

From Melissa Data Wiki
Jump to navigation Jump to search
(Created page with "The Web Service supports the following protocols all using HTTP: ==Protocols== ===POST request using XML or JSON with XML or JSON response=== An HTTP POST is issued with the ...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
The Web Service supports the following protocols all using HTTP:
Melissa Data Cloud Services support the following protocols, all using HTTP:


==Protocols==
==Protocols==
Line 15: Line 15:




[[Category:Web Services]]
[[Category:Cloud Services]]

Latest revision as of 00:41, 10 March 2015

Melissa Data Cloud Services support the following protocols, all using HTTP:

Protocols

POST request using XML or JSON with XML or JSON response

An HTTP POST is issued with the "ContentType" header specifying the format of the request and the "Accept" header specifying the format of the response. The default for both request and response is "application/xml".

SOAP request/response

Same as the traditional SOAP requests used by other Melissa Data Web services.

GET request with querystring - XML/JSON response

Similar to traditional REST requests used by other Melissa Data web services in that the parameters are put into the querystring for the request. However, the response format can be controlled via the "Accept" header (default is "application/xml").

POST request with "ContentType=application/x-www-form-urlencoded"

Similar to the GET request above, but the querystring is put into the body of the request (with the leading "?" removed) and the POST verb is used instead of the GET verb. Typically used when submitting forms in HTML.