Hi all. I've read a lot of articles about JSON and I'm eager to use it ! I have read some examples on quircksmode, etc. Well, I'm using a json string in an...
... Thanks for clarifying this [1]. Just for completeness, could you expand on which productions these are? The only one that I am aware of at the moment is...
Unicode defines a set of character code points between U+0000 and U+10FFFF, organized into 17 planes of 64K each. 0 BMP Basic Multilingual Plane 1 SMP...
JSON has a string notation which is similar to that used in the C family languages. Strings are bounded by double quote characters. Escapement is provided by...
The Java implementation at JSON.org is very liberal in the texts that it will accept. The JavaScript implementation is very strict. A JSON encoder must...
Hi, i have a json data like var celldata = [ {firstcell:"yyy",secondcell:"xxx"}, {firstcell:"yyy",secondcell:"xxx"}, {firstcell:"yyy",secondcell:"xxx"} ]; By...
I think that I made a mistake in including both // and /* */ comments in JSON. It is not necessary to have two types. It could be argued that comments are not...
Is there any reason why this is used: function e(s) { a[a.length] = s; } rather than function e(s) { a.push(s); } ? I don't suppose it makes much difference in...
What is the future of JSON? Yahoo is now supporting JSON for their WebServices - is that because Douglas Crockford works for Yahoo? What is the status of...
I don't expect this to apply to many people, and I'm not remarking on it as a shortcoming of JSON (because it clearly isn't), this is just for information: ...
Has anybody hacked a simple zipping algorithm for JavaScript terse literal constructs such as Arrays and Objects (JSON)? I am doing so much data piping through...
Hi All, I wonder if anyone can help.I come from a background of programming in PHP, and am only just beginning to get to grips with the power of Javascript....
WebDAV is an accepted standard for implementing web-folders, but the WebDAV specification is very complex and requires an XML parser with namespace support. We...
A new class, JSONStringer, has been added to the Java package org.json. JSONStringer provides a convenient set of methods for building a JSON text. See...
Hello, First, I apologize if this is a bit off-topic, but I hope someone can help. I'm having a problem with passing non-ASCII parameters using XMLHttpRequest....
I have been using JSON in several web projects via javascript and PHP, it is truly a great format and lets us developers focus on apps. I am trying write a...
Hi all, As I alluded to earlier this month (er...last month), I've been fooling around with the idea of using a JSON schema to automatically generate a user...
I package up the data from a form, and send it to my servlet. This is what the servlet receives when I get the parameter. I don't know if there is a problem...
I am looking for a VB implementation of the JSON data format. I am talking about VB 6 not .NET preferably in native VB code so I don't have another DLL...
Hi all, Below is a note that I originally sent to the json-php list, but realize probably has broader applicability. In the past week, I released my JSON-based...
I just committed about half a JSON implementation into the parrot source tree (converting Parrot PMCs into JSON strings.) Conversion the other way will...