开发者

When I Make my (ASMX) web service accept/return JSON instead of XML, is it no longer considered SOAP?

开发者 https://www.devze.com 2023-03-03 07:51 出处:网络
Just trying to wrap my head around SOAP vs REST.We currently have some asmx web services, mostly used between our own JavaScript and server code (not a public API).When I specify my method as a Script

Just trying to wrap my head around SOAP vs REST. We currently have some asmx web services, mostly used between our own JavaScript and server code (not a public API). When I specify my method as a ScriptService and specify a ResponseFormat of Json, is it still considered just a SOAP service? It still doesn't feel RESTful to me, but maybe thats because of the way my "resources" are designed (not well/fully represented by rest).

EDIT: Reading more I might be confusing the format (JSON vs XML) with the fact that most descriptions of the SOAP protocol tie in XML. For example, wikipedia states:

It relies on Extensible Markup Language (XML) for its message format

To me logically that says if I'm using JSON I must not开发者_运维技巧 be using SOAP.


This isn't exactly what you asked, but ASMX services are not RESTful if you're calling them from JavaScript and retrieving JSON. You must make a POST request to ASMX services to get JSON out of them, even if the request is idempotent and only retrieves data. In a RESTful API, a GET request would be used in that case, not POST.

That's not to say that the lack of RESTfulness is an actual problem for a private API. I've found ASMX services as a JSON-based service layer for AJAX callbacks works great in practice.


You define what kind of requests are made to you web service (asmx). Many protocols are allowed: HTTP POST, HTTP GET, SOAP 1.1, SOAP 1.2, etc... OR you can block any of them.

When you call the web service with javascript you can use POST or GET. It doesn't matter. The trick is what type of content you tell the service to return in these calls. You can tell the service to send you JSON or you can tell the service to send you XML.

When you create a service client in Visual Studio to connect to a ASMX service, Visual studio will try to access the WSDL for the service and the client will be in charge of generating the SOAP envelopes to communicate with the service and in this case you will send and receive XML because thats what the client and server have agreed to use to communicate.

0

精彩评论

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