JSON or SOAP (XML)?

后端 未结 7 1308
清歌不尽
清歌不尽 2020-12-04 19:05

I\'m developing a new application for the company. The application have to exchange data from and to iPhone.

Company server side uses .NET framework.

For ex

相关标签:
7条回答
  • 2020-12-04 19:49

    Consider how you'd be consuming the results on the iPhone. What mechansim would you use to read the web service response? NSXMLParser?

    How you consume the data would have the biggest impact on how your serve it.

    Are JSON and SOAP your only options? What about RESTful services?

    Take a look at some big players on the web that have public APIs that are accessible by iPhone clients:

    Twitter API FriendFeed API

    Also, review the following related articles:

    • How to parse nested JSON on iPhone
    • RESTful WCF service that can still use SOAP
    • Performance of REST vs SOAP
    0 讨论(0)
  • 2020-12-04 19:49

    JSON has following advantages:

    1. it can encode boolean and numeric values ... in XML everything is a string
    2. it has much clearer semantics ... in json you have {"key":"someValue"}, in XML you can have <data><key>someValue</key></data> or <data key="someValue" /> ... any XML node must have a name ... this does not always make sense ... and children may either represent properties of an object, or children, which when occuring multiple times actually represent an array ... to really understand the object structure of an XML message, you need its corresponding schema ... in JSON, you need the JSON only ...
    3. smaller and thus uses less bandwidth and memory during parsing/generation ...

    apart from that, i see NO difference between XML and JSON ... i mean, this is so interchangable ... you can use JSON to capture the semantics of SOAP, if you want to ... it's just that SOAP is so bloated ... if you do want to use SOAP, use a library and generators for that ... it's neither fun nor interesting to build it all by hand ...

    using XML RPC or JSON RPC should work faster ... it is more lightweight, and you use JSON or XML at will ... but when creating client<->server apps, a very important thing in my eyes, is to abstract the transport layer on both sides ... your whole business logic etc. should in no way depend on more than a tiny interface, when it comes to communication, and then you can plug in protocols into your app, as needed ...

    0 讨论(0)
  • 2020-12-04 19:51

    JSON has several advantages over XML. Its a lot smaller and less bloated, so you will be passing much less data over the network - which in the case of a mobile device will make a considerable difference.

    Its also easier to use in javascript code as you can simply pass the data packet directly into a javascript array without any parsing, extracting and converting, so it is much less CPU intensive too.

    To code with it, instead of an XML library, you will want a JSON library. Dates are handled as you would with XML - encode them to a standard, then let the library recognise them. (eg here's a library with a sample with dates in it)

    Here's a primer.

    0 讨论(0)
  • 2020-12-04 19:52

    You could also use Hessian using HessianKit on the iPhone side, and HessianC# on the server side.

    The big bonuses are: 1. Hessian in a binary serialization protocol, so smaller data payloads, good for 3G and GSM. 2. You do not need to worry about format in either end, transport is automated with proxies.

    So on the server side you just define an C# interface, such as:

    public interface IFruitService {
      int FruitCount();
      string GetFruit(int index);
    }
    

    Then you just subclass CHessianHandler and implement the IFruitService, and your web service is done.

    On the iPhone just write the corresponding Objective-C protocol:

    @protocol IFruitService
    -(int)FruitCount;
    -(NSString*)GetFruit:(int)index;
    @end
    

    That can then be access by proxy by a single line of code:

    id<IFruitService> fruitService = [CWHessianConnection proxyWithURL:serviceURL 
                                                              protocol:@protocol(IFruitService)];
    

    Links:

    HessianKit : hessiankit

    0 讨论(0)
  • 2020-12-04 19:58

    There are more options than just SOAP vs JSON. You can do a REST-based protocol (Representational State Transfer) using XML. I think it's easier use than SOAP and you get a much nicer XSD (that you design.) It's rather easy for almost any client to access such services.

    On the other hand, JSON parsers are available for almost any language and make it really easy to call from JavaScript if you'll use them via AJAX.

    However, SOAP can be rather powerful with tons of standardized extensions that support enterprise features.

    0 讨论(0)
  • 2020-12-04 19:59

    I would certainly go with JSON, as others already noted - it's faster and data size is smaller. You can also use a data modelling framework like JSONModel to validate the JSON structure, and to autoconvert JSON objects to Obj-C objects.

    JSONModel also includes classes for networking and working with APIs - also includes json rpc methods.

    Have a look at these links:

    • http://www.jsonmodel.com - the JSONModel framework
    • http://json-rpc.org - specification for JSON APIs implementation
    • http://www.charlesproxy.com - the best tool to debug JSON APIs
    • http://json-schema.org - tool to define validation schemas for JSON, useful along the way

    Short example of using JSONModel: http://www.touch-code-magazine.com/how-to-make-a-youtube-app-using-mgbox-and-jsonmodel/

    Hope these are useful

    0 讨论(0)
提交回复
热议问题