... Your JSON root object ends at the '}' character after the date, but contains trailing data. -- ... http://wanderinghorse.net/home/stephan/ [Non-text...
1774
Suresh Poonepalle
poonepalles
Nov 12, 2011 12:48 pm
... [Non-text portions of this message have been removed]...
1775
zaqi
slash_jak
Nov 18, 2011 10:28 am
How to define table with json like MySQL?...
1776
Stephan Beal
stephan.beal
Nov 18, 2011 10:32 am
... ??? You appear to be misunderstanding what JSON is. It is a generic data representation, not a language per se. It has no "tables" and no relationship with...
1777
miloyip
Nov 19, 2011 2:44 pm
Dear all, Recently I released an open-source (MIT license) project, rapidjson, a C++ JSON parser/generator with both SAX/DOM-style API. ...
1778
rkalla123
Nov 19, 2011 2:49 pm
Milo, The benchmark numbers rapidjson is posting look fantastic. Nice job!...
1779
Jonas Tärnström
jskorpan
Nov 21, 2011 4:04 pm
Hi My project UltraJSON (BSD license) could serve as the JSON encoder/decoder back-end for this if you're going for absolute performance. AFAIK there isn't...
1780
Milo Yip
miloyip
Nov 21, 2011 5:49 pm
Hi, Your project looks interesting, especially the benchmark method can help understand the performance in more details. I will try to put your parser and the...
1781
jonathan wallace
ninja9578
Nov 22, 2011 3:09 pm
Hello, I was sent a message on sourceforge a while ago about someone doing a benchmark test of the most popular c++ json libraries. He compared json_spirit...
1782
Rob Meijer
polacanthus01
Nov 24, 2011 5:34 am
This benchmark seems to test the wrong thing. A library that is lazy in parsing and pre-serializes on each update would likely perform poorly in real operation...
1783
jonathan wallace
ninja9578
Nov 25, 2011 12:57 am
Oops, I mentioned that to the benchmarker, I thought he altered the benchmark. You can see the benchmark to libjson fully parsing in the comment of the...
1784
Ted Elliott
tedelliott24
Dec 1, 2011 2:05 pm
Does the value type have to be a string, or does it support the other types, e.g. true/false, numbers, objects, arrays, etc. I believe it should be any valid...
1785
Ted
tedelliott24
Dec 1, 2011 2:08 pm
Sorry, messed up the patch portion a little bit. It should be this instead: patch: [ { "add": "/obj", "value": {} }, { "add": "/obj/bool", "value": true }, {...
1786
Paul C. Bryan
paul.bryan@...
Dec 3, 2011 5:26 pm
It supports any value type, including objects and arrays. Paul ... [Non-text portions of this message have been removed]...
1787
Paul C. Bryan
paul.bryan@...
Dec 4, 2011 11:58 pm
I've submitted the latest JSON Patch Internet-Draft, posted here: http://tools.ietf.org/html/draft-pbryan-json-patch-03 It includes new "move" and "test"...
1788
Paul C. Bryan
paul.bryan@...
Dec 5, 2011 6:31 am
I quickly submitted another JSON Patch Internet-Draft, now posted here: http://tools.ietf.org/html/draft-pbryan-json-patch-04 It now provides a usage example...
1789
alexandre_morgaut
alexandre_mo...
Dec 5, 2011 9:15 am
Interesting proposal, it could be useful, but it still need some work ;-) I'm not sure if it's best using pure path / url syntax to find the target element or...
1790
Paul C. Bryan
paul.bryan@...
Dec 5, 2011 5:27 pm
Thanks for the feedback. My comments inline: ... The first draft of JSON Patch actually used JSON Path. Since JSON Path was not standardized, I had to choose...
1791
alexandre_morgaut
alexandre_mo...
Dec 5, 2011 5:56 pm
... I think JSONPath is kind of a de facto standard. It was chosen by ebay to create its new SQL variant ( http://ql.io/examples ) I like JSON Schema but I'm...
1792
Paul C. Bryan
paul.bryan@...
Dec 5, 2011 6:10 pm
... No, this specification does not support mathematical, logical or string operations. Paul [Non-text portions of this message have been removed]...
1793
zaqi
slash_jak
Dec 12, 2011 4:13 am
{"hello":"bson"} \x15 \x00 \x00 \x00 \x02 h e l l o \x00 \x05 \x00 \x00 \x00 b s o n \x00 \x00 I already read from this link :...
1794
Tatu Saloranta
cowtowncoder
Dec 12, 2011 4:40 am
Wrong mailing list -- you probably want to join http://groups.google.com/group/bson since this is related to BSON, not json. -+ Tatu +-...
1795
Paul C. Bryan
paul.bryan@...
Jan 2, 2012 5:50 am
I'm hoping someone can help explain the rationale behind a couple of points in the JSON specification: 1. 8bit content-transfer-encoding for UTF-8 RFC 4627:...
1796
Tatu Saloranta
cowtowncoder
Jan 2, 2012 7:11 am
... Hmmh? Where does 994 come from? ... I assume this was to allow implementations to choose whether they keep track of all seen names or not: this can add...
1797
John Cowan
johnwcowan
Jan 2, 2012 7:14 am
... I think that statement is just a false assertion rather than a normative restriction. ... Nobody imposes any such limit. ... That's a very good question. ...
1798
John Cowan
johnwcowan
Jan 2, 2012 7:19 am
... From RFC 2045: 2.8. 8bit Data "8bit data" refers to data that is all represented as relatively short lines with 998 octets or less between CRLF line...
1799
Paul C. Bryan
paul.bryan@...
Jan 2, 2012 7:33 am
... Sorry, 996 octets. I think. Per RFC 2045 §2.8, 8bit data is "...represented as relatively short lines with 998 octets or less between CRLF line separation...
1800
Tatu Saloranta
cowtowncoder
Jan 2, 2012 7:43 am
... I am quite sure this was not the intent -- such limit would indeed render JSON pretty useless. -+ Tatu +-...
1801
douglascrockford
douglascrock...
Jan 2, 2012 1:12 pm
... JSON does not impose such a limit. ... This was so that ECMAScript39;s eval function could act as a JSON parser. I think it should have been MUST....