Maybe this stuff could be interesting for json2.js file as well, or maybe not. It is a quick and full specs ISO strings parser, really fast, widely compatible,...
Personally, I think this would have to extend the Date prototype to be fully useful; like json2.js, its value is in allowing us to write script now using the...
Shouldn't new Date(NaN) refer to a future date that is always just around the corner, yet never arrives? sorry... couldn't resist :) On Mon, Jul 6, 2009 at...
Uhm, I think new Date(NaN) should return a static historical date, new Date(Number.POSITIVE_INFINITY) 9999-12-31T23:59:59:999 and Number.NEGATIVE_INFINITY...
For YUI's JSON utility, I'm leveraging native behavior if present and stable. To that second point, I adapted the test suite for YUI's JSON util to test the...
Checkout Google Gson library (Apache license) that we authored: http://code.google.com/p/google-gson/ There are other Java libraries linked at json.org as...
... Just to make sure: if you already have JSON content, why would you need to convert it to Java object? Couldn't you just send it as is? But assuming this...
http://jabsorb.org is both a java<-->json codec and a full json-rpc framework. It is light, simple, mature, fast and awesome!... but of course I'm a little...
See JAJB (http://jajb.sourceforge.net/) too. Convert json to java using annotation and/or XML and/or dynamic binding. ... -- __________________________________...
The Waterken Server <waterken.sf.net> includes a library for JSON <=> Java object conversion. There's also a simple wrapper class that facilitates using JSON...
The restful-json group (http://groups.google.com/group/restful-json) might actually be a better fit for these questions, more focused on JSON in a REST...
... From a practical perspective, it is better to label your POST entity as Content-Type "text/plain", since this will be handled more efficiently in...
... Yikes, recommending inaccurate media types? This easily leads down the hideous road of content sniffing. Hopefully that wouldn't be suggested for...
On Tue, Jul 21, 2009 at 3:01 PM, Kris Zyp<kriszyp@...> wrote: ... I fully agree -- I would prefer using proper content/media types, since those do serve...
Just wanted to share that the source code repository for the JSON serializer in JsonFx.NET (as well as the full Ajax framework) has been migrated to Google...
Hi all, its been a while since the last version of JSWOOF was uploaded but rest assured development has been around the clock. version 1.08 introduces some...
Version 1.2 of Jackson JSON processor (http://wiki.fasterxml.com/JacksonHome) is now available. Jackson is a full-featured JSON processor written in Java. It...
JSON.parse function accepts an extra argument which main usage is to transform strings into Dates, if encountered. For performances reason this operation will...
... The replacer/reviver functions are generally useful. They are not mainly for dates. We shouldn't be mucking things up for eval tricks. ES5 is adopting the...
I am using the native JSON.parse with FF and others, json2 for IE < 8 The problem is that we have a standard (almost) to stringify Date but at the same time...
I wonder if this test is enough: http://www.3site.eu/jstests/json/ as average it is about 2 to 5 times faster in IE8 or 7, faster in any case with every other...
P.S. added native JSON parser if present, IE8 as example shows no differences between my proposal and native plus json2 suggested function. Moreover, my regexp...
Is there a definition of these Dates and other new features in JSON2 as defined on the website www.json.org (i.e., using the train track model). My JSON parser...
... There is no JSON2. json2.js is a JSON library for JavaScript. JSON has not changed. It is still the language that is described at http://www.JSON.org/ and...
Thanks, but I don't see date strings referenced on the www.json.org site. There are a lot of different Date formats like RFC822 and the ISO standard. And there...