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...
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...
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...
JSON is been pretty much as it was when first proposed in 2002, except for two recent changes, both of which were motived by observation of usage. The first...
Hello, I will first introduce myself: I'm the author of the Ajax.NET (http://ajax.schwarz-interactive.de/ or http://weblogs.asp.net/mschwarz/) and using JSON...
Anyone using JSON as a replacement for XML in an AJAX-like project? A couple of years ago I used dynamic <script> elements to communicate asynchronously with...
Greetings fellow JSON Lovers. I have been spending building a great deal of complex Product/Business workflow wizards and tools that are required to handle...
An interesting reference to JSON in the "State of AJAX" blog (at http://hinchcliffe.org/archive/2005/08/18/1675.aspx). "SOA Implications One: Ajax clearly...
Hello, I'm fairly new at Json, so please be patient with me :). Right now, i'm creating a web app which returns database results in asynchronous fashion,...
Hi, I have a question about the characters 0x80 through 0xFF. These characters have a different meaning, depending on the codepage of the system. Are these...
The spec reads... "A string is a collection of zero or more Unicode characters, wrapped in double quotes, using backslash escapes. A character is represented ...
Hi everyone, I've made a few coding style changes to JSON-PHP in response to comments from PEAR members. I haven't yet had a chance to address the recent...
HI Did anyone run into an "Out of Memory" error trying to parse a JSON string in IE or Mozilla? It is probably dumb to do it but I ran into an issue where I...
Dang. It finally hit me that scientific notation has been added to the spec for numbers. I think this is a good idea except now I need to implement it. Oh...
Hi, Shouldn't it be possible to jsonize a string like this? {"doubleQuoteSurroundedBySpaces":" \" "}}' json.py and json.js both choke when trying to parse...
I've released fixes to the sourceforge project https://sourceforge.net/projects/json-py/ Also included in the release is Jim Washington39;s minjson.py There are...
Guys, If anyone interested in JSON-RPC, feel free to take a look at JRP. It's a JSON-RPC implementation I recently started. JRP stands for JSON-RPC Page, and...
The following test works in my sandbox for json-py. I think it works in the release but I actually cannot get to sourceforge at the moment... Try adding this...
I want to build a web application where the responses to requests will be in JSON or at some point in time in a different format (e.g. XML). HTTP does allow...
Would someone shed some light on why the json.js file method of detecting arrays was changed? Array.prototype.______array = '______array39;; is added And - if...
I have a string containing a single \ character. I'm not quite sure what this string should look like once json encoded. My javascript encoder (a popular one)...