... I'm having some trouble deciphering your XML class. Can you write down in English the rules it uses to convert JSON to XML and vice versa? Thanks. -- ...
Does anyone know of a good WYSIWYG tool for creating a hierarchy of objects/elements and fields/attributes that exports to both XML and JSON? I downloaded...
Not really a wysiwyg, but I have a different textual representation of JSON called RSON. It's extremely easy to work with in a text editor. The manual is...
... I would say that that could happen in only a few ways: 1) If someone shepherded a particular library through the JCP, a clunky and bureaucratic process...
On Mon, Jan 24, 2011 at 10:48 AM, Douglas Crockford ... Probably not to the degree that there'd be just one. From the list I think just maybe half a dozen are...
If there was anything that bugs ME, is incomplete documentation and 'just read the code' type of libraries. Dennis Gearon ________________________________ ...
... True. That also contributes to feeling of "but how is this different". Maybe there are strengths, but if finding those requires reading sources, yeah,...
I'm working on documenting my own API (JSON, JSON-RPCish), and it's a lot of work. I just keep reminding myself how I'd like to read it. Dennis Gearon ...
... Hopefully not... software is software... there's always more than one way to skin the proverbial cat... "there can be only one" is reminiscent of...
Hello all, I just wanted to mention that a while ago I changed the name from libJSON to libjson, would you mind reflecting that on json.org? I added a ton of...
Interesting. One thing I noticed from the project page is that there are big claims on performance, but it seems to lack links to actual measurements? I was...
If you'd prefer a really slow JSON parser, check out https://github.com/dgraham/json-stream. It's about 20x slower than the Ruby json gem, but it's quite...
TS> I have noticed that at least half of all JSON projects claim to be TS> faster than anyone else, so measurements could also clear up the TS> situation and...
... Yes, one would be very useful. I know there are couple for Java (general purpose ones that can also use JSON; and specific ones), but haven't seen many for...
If there is a standard JSON benchmark that would be nice. I've only compared it to wxJSON, cJSON, and a few others. "People have always been impressed by the...
... I suspect many users would like to see comparisons. Maybe blog about it or such (and include test code), or send a link if already published? I don't doubt...
Well there is a benchmark included in the source, but it's mostly for my own purposes of comparing upgrade versions against the previous version. I think ill...
... That would be very useful! I know it might be bit of work, given differing APIs and all.. but then again, it should be beneficial for authors of other...
Since this is a group dedicated to JSON, I just thought I'd post a note about yet another Objective-C serializer / deserializer: JSONKit, available at...
In RFC 4627, Section 3 Encoding, it states: "JSON text SHALL be encoded in Unicode. The default encoding is UTF-8." Unicode is defined as: The Unicode...
A receiver can do what it chooses to with the character codes it receives. If it wants to delete them or reject them, that is its business. But a JSON channel...
... Not if it's Unicode. It is a common misconception that "Unicode" is just a set of code points, like say ASCII or EBCDIC. It is not. With ASCII, you can...
... For JSON's purpose, Unicode is just a set of code points. It gives some, such as { and }, special meaning. But in strings, everything should simply be...
... Not according to RFC 4627 it isn't. Section 3, Encoding, "JSON text SHALL be encoded in Unicode.", where SHALL is interpreted via RFC 2119 (i.e., SHALL is...