I'm the type of person that is pretty impatient, and given the past history of browsers with regards to adopting standards, I'm curious on anyone's feelings on...
886
Kris Zyp
kriszyp
Oct 13, 2007 3:47 pm
JSON JavaScript Object NotationCisco, have you tried Subspace/CrossSafe (http://www.xucia.com/page/CrossSafe)? It is a JS library that provides secure...
887
Michael Schwarz
schwarz_inte...
Oct 14, 2007 11:54 am
Hi, one thing I didn't get a answer yet about security: I expect that NTLM is not working with JSONRequest, too, is that correct? Some other questions while...
888
Frans Thamura
fthamura
Oct 14, 2007 3:20 pm
hi all i am seeking an Java based of JSON that can convert JSON become URL, this is called URLEncoder and URLDecoder, anyone have it? FransThamura Indonesia...
889
collin_jackson
Oct 14, 2007 5:26 pm
... Can you tell us which platform you are developing a client plugin for? ... The browser's security policy isn't granular enough to separate URIs into...
890
Michael Schwarz
schwarz_inte...
Oct 14, 2007 5:40 pm
Hi, ... I write one for Mac and Windows, well, it is not a real plugin, but a way to integrate it in you web pages. ... What I thought was pages like...
891
lhilaiel
Oct 17, 2007 6:34 pm
Hello all, http://lloydforge.org/projects/yajl/ This is a fast, lightweight, portable JSON parsing/generation/validation library. It's design goals were to ...
892
Douglas Crockford
douglascrock...
Oct 29, 2007 4:52 pm
The original version of json.js had a JSON object containing stringify and parse methods. When the opportunity to add JSON support to the next proposed...
893
Stephen M. McKamey
stephen.mckamey
Oct 29, 2007 5:00 pm
I've been using my C# JSON parser for about a year now as I've been building out a larger end-to-end Ajax framework. Last week, I released the JSON parser...
894
Kris Zyp
kriszyp
Oct 30, 2007 4:26 pm
I for one totally agree with the decision to revert to the original API. While I know that defensive enumeration is good practice, I really appreciate keeping...
895
Ric Johnson
ricjohnsoniii
Oct 31, 2007 1:10 am
Thank you for implmenting this. this make the code so much cleaner. Now if we can just get the Prototype library to stop overloading Object.... ... stringify ...
896
Gustavo Munoz
justavo_munoz
Nov 1, 2007 12:48 am
Great job, Douglas. There is a typo in the initial multiline comment at line 57, it says JON.parse ... -- Blog: http://justavo.blogsome.com/ [Non-text portions...
897
Jim Fricker
jimfricker
Nov 6, 2007 5:26 am
What would be the recommended way of converting the result of an regexp.exec(str) method call to JSON? The result is an array but with two extra properties;...
Quick note: there is a new JSON processor (parser, generator, simpler mapping tools) written in Java called Jackson. It's available from: ...
900
cowtowncoder
Nov 7, 2007 5:35 pm
... How would it do this? Using naming convention to map JSON elements into URL query parameters? ( { "value" : { "a" : 1, "b" : "abc" } -> ...
901
Kyle Alan Hale
kylealanhale
Nov 14, 2007 8:02 am
In my search for a convenient way to represent XHTML DOM elements, I assembled some ideas of how to apply the native JavaScript objects to the W3C DOM objects....
902
Stephen M. McKamey
stephen.mckamey
Nov 14, 2007 2:40 pm
Those interested in JSoda should also check out JsonML. JsonML is a more compact representation and is fast for converting any XML to JSON. Example client...
903
Kyle Alan Hale
kylealanhale
Nov 14, 2007 5:56 pm
Indeed, JSoda and JsonML serve much the same purpose, but with slightly different styles and goals. ... This is probably the best reason to choose Stephen's...
904
Tatu Saloranta
cowtowncoder
Nov 14, 2007 7:00 pm
... I may be bit slow, but I am not sure I understand why you would want to wrap DOM within JSON? Why not deal with xml via DOM as is? And when transferring,...
905
Kyle Alan Hale
kylealanhale
Nov 14, 2007 8:41 pm
... The DOM element objects themselves aren't being wrapped in JSON. In fact, JSoda isn't JSON at all, it's just nested JavaScript objects. Each object type...
906
Tatu Saloranta
cowtowncoder
Nov 14, 2007 11:15 pm
... Ah ok. So it's more about javascript objects, not so much about json per se? If so, it is also related to methods like Badgerfish, which likewise allows...
907
Tatu Saloranta
cowtowncoder
Nov 14, 2007 11:19 pm
I have been able to do some very interesting performance comparisons, but unfortunately data I am using is company internal, and hence non publishable. So I...
908
Kyle Alan Hale
kylealanhale
Nov 15, 2007 1:44 am
... per se? ... Yes, much like Badgerfish, just not as comprehensive.. but a bit easier to read. Badgerfish is ideal for representing any XML-based data....
909
Kris Zyp
kriszyp
Nov 15, 2007 8:04 pm
I wanted to introduce my project Persevere, as I have just released a new version of the Persevere server and client: ...
910
haritha.juturu
Nov 20, 2007 1:06 am
Hi Everyone I was looking for a JSON serializer library to use in our web application. I believe there are just too many options out there... XStream, JSON-lib...
911
Arthur Blake
blakesys
Nov 20, 2007 2:49 am
You might want to check out jabsorb (formerly known as JSON-RPC-Java) at http://jabsorb.googlecode.com In the new 1.2 version, we've added circular reference...
912
Kyle Alan Hale
kylealanhale
Nov 20, 2007 4:21 pm
... There are far too many options. It's because JSON is a wonderful new emerging standard, and everyone wants a piece of the pie.. everyone wants their names...
913
haritha.juturu
Nov 20, 2007 6:02 pm
... Thanks All. guess i'll be playing with some of the libraries to decide on what will work best....