We are producing a calendar app that uses JSON as the interchange format. You can check it out at www.kiko.com....
98
jeffrey_horner
Sep 7, 2005 6:03 pm
... [...] ... Indeed. I would certainly use JSON if it contained cyclical structures. Maybe you could elaborate on this, maybe even show us some examples of...
102
lorphos
Sep 23, 2005 3:15 pm
... Interesting. Is the API going to be JSONRPC? -Sven...
103
Peter Ring
peter17ring
Oct 6, 2005 5:18 pm
Is there a way to ensure that key names and string values are represented as unicode objects by a JSON reader? Specifically, I'm using json-py in a context...
104
Jim Washington
jimcburg
Oct 6, 2005 7:01 pm
... Hi, Peter You have made an interesting case for the idea that strings read from JSON in python should be python unicode objects. For the time being, I...
107
Douglas Crockford
douglascrock...
Oct 19, 2005 3:53 pm
I added some grammar to www.JSON.org to describe strings and numbers. This is not a change to the language. It is just completing the grammar so that it...
108
Will Coleda
will_coleda
Oct 21, 2005 10:20 pm
I just committed about half a JSON implementation into the parrot source tree (converting Parrot PMCs into JSON strings.) Conversion the other way will...
109
technites80
Nov 2, 2005 8:12 am
Hi, I'm looking into developing a lightweight pull parser for JSON on mobile devices. Is anything like this already available? John Wright...
110
Rob Lanphier
robla
Nov 3, 2005 3:11 am
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...
111
pjdonnelly
Nov 3, 2005 9:11 pm
has anyone tried to use xsl to transform xml to the json format?...
112
technites80
Nov 5, 2005 8:46 am
Nope, but that's an idea I'll definitely have to steal sometime!...
113
fabiorecife
Nov 8, 2005 6:58 pm
You find a delphi implementation from JSON , look this: https://sourceforge.net/project/showfiles.php?group_id=94653&package_id=168952 or ...
114
fabiorecife
Nov 15, 2005 11:18 am
New release of uJSON.pas : Release new version 1.0.1 to correct the uJSON.pas (JSONArray.put and JSONObject.getDouble) ... more look: ...
115
malcontent123
Nov 18, 2005 10:11 am
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...
116
MPCM
mpcmtechnolo...
Nov 18, 2005 2:08 pm
I haven't found one in my searches...., But I've considered writing one or at least starting one as a base point. Since vb doesn't support named arrays, I'm...
117
Atif Aziz
azizatif
Nov 18, 2005 2:38 pm
I am not aware of any VB6 implementation, but one of the interesting things you can do is use JavaScript directly from within VB6 without having to add any...
118
MPCM
mpcmtechnolo...
Nov 18, 2005 3:40 pm
I just tried that on my machine and it threw a lovely warning from Norton about Possible Malicious scripts running (standard error, not something actually...
119
Atif Aziz
azizatif
Nov 21, 2005 9:43 am
Hi Matt, Ah, yes, I don't have Norton software on my PC so I did not get that warning on my machine when running the code I posted. I can see how this would a...
120
James
jblack1395
Nov 30, 2005 7:19 pm
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...
121
MPCM
mpcmtechnolo...
Nov 30, 2005 7:34 pm
Looks like you need comma between your array values (objects in your case); ... -- Matthew P. C. Morley MPCM Technologies Inc....
122
James
jblack1395
Nov 30, 2005 8:33 pm
... case); Thank you for the response. Now I have modified my array, and am now having a different problem. Here is my java code: temparray =...
123
Martin Cooper
mfncooper
Nov 30, 2005 11:18 pm
... This is an array with a single element, and that element is an object. Your original array, after you fixed the commas, was an array of objects. It looks...
124
James Black
jblack1395
Dec 1, 2005 2:51 am
... Hash: SHA1 ... Thank you for the response. I will look at it tomorrow to see if trying to pull the values out as a JSONObject will work. If I want it to be...
125
Martin Cooper
mfncooper
Dec 1, 2005 3:58 am
... Now you've got an array where each element is an array of one element, and that element is an object. You're no better off. Fundamentally, you need to...
126
Rob Lanphier
robla
Dec 1, 2005 9:29 am
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...
127
James
jblack1395
Dec 1, 2005 2:35 pm
Thank you, the servlet is now functioning properly. I decided to go with the array approach....
128
Andrew Wooldridge
triptych999
Dec 1, 2005 3:33 pm
This is cool! I've been looking for a way to do something I call "socially constructed interfaces" and I think this may be a step in the right direction --...
129
Rob Lanphier
robla
Dec 1, 2005 6:09 pm
... Thanks! I'm thinking the next step for this is to integrate it into wiki software, ala Wikidata: http://meta.wikimedia.org/wiki/Wikidata That would...
130
iconinico
Dec 6, 2005 2:49 am
I thought you guys might be interested in this, it's a Javascript Serializer object, can convert Javascript to object notation and to XML. ...
131
ingliss
Dec 12, 2005 4:33 pm
Anyone know of an Oracle PL/SQL implementation of JSON?...