Hello list, I just want to let you know, that I published an article over at xml.com http://www.xml.com/pub/a/2006/05/31/converting-between-xml-and-json.html ...
The following json poll is now closed. Here are the final results: POLL QUESTION: Which of the following data communication methods / techniques do you use ? ...
json@yahoogroups.com
Jun 2, 2006 8:21 am
389
... I completely agree. We were unable to use the GNOTE-licensed code in either our GPL application, or in our other app that's currently closed-source....
... Except for time zones. ... As another poster commented, unix epoch is a great transmission format thanks to its explicit treatment of time zones. Every...
I have added a JSONString interface. A class implementing it can customize the JSON serialization of its instances. http://www.json.org/java/index.html...
... This seems like a dangerous masking of errors. If these conditions occur, I would think the error should propagate, and the serialization to JSON should ...
I've finally had the time to check DOJO and JSDL and examining it since Friday.I think I'll be able to use my server-side application (JSDL definition) with...
well, it has been a while now and i've seen a fair number of downloads, but so far i've gotten no feedback. i see a few possibilities. 1. my code is so...
I looked at your code, but couldn't see any advantage over the existing project at http://sourceforge.net/projects/jsoncpp/ In fact, I found your code harder...
i wasn't aware of that project. the json web site only pointed to the zoolib code, which was a huge system that just happened to include json. i'll take a...
Sorry for cross posting, I do feel it is related to JSON and not too OT. Atif(you might know him from postings here) and I(JSON-RPC author) are planning a...
Hello ppl, i am new to this place. I am wondering how good is this? I am browsing the old message to know about more on json. already xml is well formed and it...
... <snip/> ... No, that's not the case (and there is no "arguably" ;), at least from an ASF perspective. There is a policy in place at the Apache Software...
... You're right, this is not the place to talk about Dojo. You should check out the Dojo mailing lists, and the archives of those lists. There are many, many...
... perhaps you should read up here: http://json.org/ and here: http://www.json.org/xml.html first Philip -- "Stercus, stercus, stercus, moriturus sum." ...
Hi, My JSON text looks as below: myJSONtext = {user: {errorFirstName:"", errorLastName:"", errorEmail:"The email address you entered is not valid." } }; But...
... It works fine for me in Firebug. You didn't provide any surrounding code, but are you sure myJSONtext is still in scope when you're trying to access it? --...
This is javascript code, not JSON. Keys should have surrounding quotes in JSON. {"user": {"errorFirstName":"", "errorLastName::"", "errorEmail":"The email...
Hi Henrik and Martin, Thanks very much for your response. Without quotes its working for me. With quotes FireFox is throwing an error as 'invalidLabel', when...
Hi Doug, My understanding of JSON was that you need to form a Text in such way that, when we create a JSON object using 'eval', then we can traverse its...
Perhaps he is asking why you aren't using: http://json.org/json.js ... string.parseJSON() This method parses a JSON text to produce an object or array. It will...
... It would be helpful to have some more context; the first snippet you sent was just plain old Javascript, and didn't show how you're using eval(). -mike. ...
Ashwin, It sounds like either your eval() statement is incorrect or your JSON string is malformatted. Below is a simple example of some JSON written in...