Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

JSON is a textual data format for data exchange. JSON stands for Javascript Object Notation and, as the name implies, it is itself Javascript. Here is a small sample:

...

One of the advantages of JSON is that is very easy for Javascript developers to use - it simply needs to be evaluated and it becomse javscript objectsimmediately becomes a javascript object. For more information on this see the JSON website.

JSON is supported in CXF through Jettison. Jettison is a StAX implementation that reads and writes JSON. Jettison intercept intercepts calls to read/write XML and instead read/writes JSON.

...