vote up 23 vote down star
19

My requirement is just to display a set of values retrieved from database on a spread. I am using jquery.

flag

47% accept rate

11 Answers

vote up 0 vote down

Both XML and JSON are supported by Microsoft. XML literals were the new cool feature in VB 9. In the upcoming version of ASP.NET 4.0 JSON is a must to leverage the power of client side templating.

From the question you have asked it seems JSON might be the choice for you as it is easy to process on client side with or without jQuery.

link|flag
vote up 0 vote down

JSON is always preferable in terms of the processing the client browser has to do for parsing the data. Also, JSON is light weight data exchange format.

XML parsing always consumes lot of browser resources and should be avoided as much as we can unless otherwise required.

link|flag
vote up 5 vote down

Some other things that I have run into in the XML vs JSON relm:

JSON is very good for

  • name/value pairs
  • nesting those pairs

Which means it tends to like an array or nested array. However JSON is missing both

  • attributes
  • namespacing

So if you were to combine two or more JSON services there could be potential namespace conflicts. That being said JSON can be used for about 90% of the same things XML can be used for when exchanging data in my experience.

link|flag
Another issue of Json is that you can not merge two json messages easily to create a new json message. It usually won't be wellformed.. – Jimmy zhang Nov 19 at 21:37
vote up 30 vote down

Favor XML over JSON when any of these is true:

  • You need message validation
  • You're using XSLT
  • Your messages include a lot of marked-up text
  • You need to interoperate with environments that don't support JSON

Favor JSON over XML when all of these are true:

  • Messages don't need to be validated, or validating their deserialization is simple
  • You're not transforming messages, or transforming their deserialization is simple
  • Your messages are mostly data, not marked-up text
  • The messaging endpoints have good JSON tools
link|flag
vote up 2 vote down

I'd choose XML over JSON if I need to validate the chunk of incoming data, because XML nativly supports this through XSD.

link|flag
vote up 7 vote down

Usually JSON is more compact, and faster to parse.

Prefer XML if:

  • You need to process the data on the client, and you can leverage XSL for that. Chances are the XML + XSL chain will work faster than JSON + JavaScript especially for big chunks of data.
    • One good case is to convert the data into an HTML snippet.
  • Various legacy cases:
    • There is an existing XML service, and it is a hassle to rewrite it with JSON for some reasons.
    • You have to post this data back as XML after some light processing using user's input.

One important case of (almost) XML: try to detect when sending HTML snippets is more beneficial than sending raw data. AHAH can do wonders in simple applications, yet frequently overlooked. Usually this style assumes that a server sends HTML snippets that will be inlined in the web page without processing.

Usually in AHAH cases CSS is being leveraged to the max to massage snippets visually and implementing simple conditionals like hiding/showing relevant parts of the snippet using user-specific or application-specific settings.

link|flag
vote up 7 vote down

Considering your specific case where you're already doing javascript on the client side, I'd go with JSON for these reasons:

  • Since JSON is native to javascript you'd have to write less code on the client side - Just eval() the JSON string and get an object you can use.

  • At the same time evaluating JSON on the client-side will be more efficient, and therefore faster, on the client-side.

  • JSON serialization produces shorter strings than XML. Using JSON will reduce the amount of data running across the wire and improve performance in that respect.

Here's some further reading: http://www.subbu.org/blog/2006/08/json-vs-xml

link|flag
isn't `eval()`ing JSON a big no-no? – shoosh Nov 28 '08 at 6:17
@Shy, JSON's own site says you can use eval on JSON (with parentheses wrapped around): json.org/js.html – strager Nov 28 '08 at 6:26
Taken from json.org: The eval function is very fast. However, it can compile and execute any JavaScript program, so there can be security issues. The use of eval is indicated when the source is trusted and competent. It is much safer to use a JSON parser – sarego Dec 12 '08 at 3:24
vote up 0 vote down

I use JSON for any kind of configuration, data interchange or messaging. I use XML only if I have to for other reasons or to semantically mark up document-like data.

link|flag
vote up 18 vote down

I use JSON unless I'm required to use XML. It's simpler to understand, and (because it requires less configuration overhead) easer to program for reading and writing if the libraries are available in your context, and they're pretty ubiquitous now.

When Amazon first exposed their catalogs as a web service, they offered both JSON and XML. Something like 90% of the implementers chose JSON.

link|flag
2  
"I use JSON unless I'm required to use XML." ~ Exactly. – EndangeredMassa Dec 1 '08 at 0:40
So the deeper question is "For what reasons would you be required to use XML?" Are those reasons idiotic; or do they just reflect different concerns, from a different point of view from yours? – 13ren Apr 20 at 9:57
Several possible reasons, including existing software I don't want to rewrite. But the most important is using XML as a data interchange format where I don't control both ends, or there is a formal standard that applies and requires XML. I can only choose arbitrarily when I'm the only developer involved. – le dorfier Apr 20 at 15:49
vote up 3 vote down

JSON is easy and faster to parse. XML is a little more difficult to parse, and is slower to parse and transfer (in most cases).

Since you're using jQuery, I suggest using JSON: jQuery can retreive JSON data and convert it into a Javascript object automatically. In fact, you can convert JSON data into a Javascript object using eval. XML would have to be transversed manually by you (I don't know how this works in Javascript, but it's difficult/more annoying in most languages I've used XML libraries with).

link|flag
JSON is by definition a JavaScript object, jQuery isn't really doing anything special "converting". Just thought It should be clarified. – Brian Gianforcaro Nov 28 '08 at 5:32
JSON is not a javascript object unless it's instantiated in javascript. It happens to follow the format used for serializing javascript objects, but it's accessible (with the proper add-ons and built-ins) from most languages, at least as easily as XML is. – le dorfier Nov 28 '08 at 5:43
@Gianforcaro, I realize this. I'll edit my post to state that more clearly. @doofledorfer, I said "and convert it into a Javascript object." I didn't say the JSON data was a Javascript object. – strager Nov 28 '08 at 5:50
I was responding to Brian. – le dorfier Nov 28 '08 at 7:17
Ah, sorry, didn't catch that. – strager Nov 28 '08 at 7:18
vote up 0 vote down

JSON is the native encoding for javascript. It should be much faster and easier to work with.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.