Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

json · JSON JavaScript Object Notation

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 590
  • Category: Data Formats
  • Founded: Jul 19, 2005
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 890 - 919 of 1958   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
890 Michael Schwarz
schwarz_inte... Send Email
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 Send Email 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... Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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;...
898 Douglas Crockford
douglascrock... Send Email
Nov 6, 2007
9:39 pm
... myObject = {index: myArray.index, input: myArray.input, array: myArray}; jsontext = JSON.stringify(myObject);...
899 Tatu Saloranta
cowtowncoder Send Email
Nov 7, 2007
6:07 am
Quick note: there is a new JSON processor (parser, generator, simpler mapping tools) written in Java called Jackson. It's available from: ...
900 cowtowncoder Send Email 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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email 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 Send Email
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 Send Email
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 Send Email 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....
914 haritha.juturu Send Email Dec 6, 2007
2:49 am
I have been looking for some slightly complicated samples for json to java objects conversion using JSON-LIB but in vain. So i thought i will post my sample...
915 Douglas Crockford
douglascrock... Send Email
Dec 14, 2007
1:51 pm
The JSON.org page is now available in Bulgarian. http://json.org/json-bg.html...
916 Tyler Close
tjclose Send Email
Dec 16, 2007
7:02 pm
Has any thought been given to specifying the use of HTTP/1.1 message pipelining with JSONRequest? The current specification says: "The browser must be able to...
917 Mark Nottingham
mnotting Send Email
Dec 18, 2007
12:20 am
Pipelining is often regarded as problematic, especially from the client side, because of uneven support in proxies and servers, as well as some uncomfortable...
918 Tyler Close
tjclose Send Email
Dec 18, 2007
5:53 am
Hi Mark, Thanks for the response. I've got a few questions about your comments and am also wondering if it's feasible to work around the issues you raise. ... ...
919 Mark Nottingham
mnotting Send Email
Dec 19, 2007
5:07 am
... There are several aspects, but if you have an outstanding request on a connection, and another request is queued, deciding whether it's more efficient to...
Messages 890 - 919 of 1958   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help