Wow, JSONiJ sucks. Regards, John (Developer, JSONiJ)...
1645
uriel.chemouni
May 16, 2011 11:43 am
Each test has a tag, to show if the test is a standard test, or not. I have to add this information in my wiki page. The score line is incremented by 100 by...
1646
Uriel Chemouni
uriel.chemouni
May 16, 2011 1:26 pm
I have change features test page, and separate standard and non-standard Tests. thanks for this comments.. ... [Non-text portions of this message have been...
1647
Tatu Saloranta
cowtowncoder
May 16, 2011 3:53 pm
On Mon, May 16, 2011 at 3:16 AM, uriel.chemouni ... Performance test section could surely use some work. It tells very little, but makes big unsubstantiated...
1648
uriel.chemouni
May 16, 2011 4:41 pm
Hi Tatu, ... I can publish (I'm not shure) a working copy of the benching software, due to dépendances licence. However I have just upload the full benchmark...
1649
Tatu Saloranta
cowtowncoder
May 16, 2011 7:37 pm
On Mon, May 16, 2011 at 9:41 AM, uriel.chemouni ... Great, thanks! ... Yes, this makes big difference. Usually relative short amount of time works ok (like 5...
1650
Stephan Beal
stephan.beal
May 16, 2011 7:53 pm
... If you'll make the columns of type TEXT, the stored JSON can have any size. i use this in a wiki back-end which stores pages in JSON form. -- ... ...
1651
marsdenjw
May 17, 2011 1:14 am
Hello Uriel, I think benchmarking is a great way to compare the frameworks (and motivate lazy developers like myself who never finish anything). I run the...
1652
uriel.chemouni
May 17, 2011 8:02 am
This table is more than 150 000 000 lines long, switching to text will dramatically impact performances, and disk usage....
1653
Douglas Crockford
douglascrock...
May 19, 2011 6:44 am
The JSON.org page is now available in Romanian. Thanks to Chris Plutis for the translation....
1654
jonerlandmadsen
May 19, 2011 1:47 pm
Hi! I am trying to get an answer to what must be JSON-question number two, but apparently, the answer to my question is too obvious to be included in the Q&As...
1655
Martin Cooper
mfncooper
May 19, 2011 2:16 pm
On Thu, May 19, 2011 at 6:47 AM, jonerlandmadsen ... I think perhaps your problem is not a JSON problem per se, which may be why you're having some trouble...
1656
Stephan Beal
stephan.beal
May 19, 2011 2:31 pm
On Thu, May 19, 2011 at 3:47 PM, jonerlandmadsen < ... Nope. JSON is a subset of JavaScript and eval() runs the JavaScript which is passed to it. The extra...
1657
jonerlandmadsen
May 19, 2011 2:41 pm
... Thank you for your kind answer, but it does not address my problem: How to get the external json array into a text string (that can then be parsed)....
1658
Stephan Beal
stephan.beal
May 19, 2011 3:12 pm
On Thu, May 19, 2011 at 4:41 PM, jonerlandmadsen < ... You already have it: the "contact" string is the array, as a JSON-formatted string. -- ... ...
1659
Connie Clark
connieclark68
May 19, 2011 4:00 pm
Here are several patterns I often use which may help you *If the list data is available at the time your server is returning the rest of the page content * ...
1660
jon.erland.madsen@...
jonerlandmadsen
May 19, 2011 4:57 pm
Thank you so very much! I got help and will use the following code (my script is client side): ********************************************** function...
1661
kylealanhale
May 20, 2011 3:07 pm
I want to clarify a couple of things that no one else seems to have addressed: * There is no such thing as "an external JSON-array"; JSON is just a data...
1662
uriel.chemouni
May 21, 2011 5:36 am
Great, JSONiJ 0.2.3.9 can now validate all my tests. It deserves an update results in json-smart. Good job jhon....
1663
marsdenjw
May 21, 2011 10:47 am
No problem - as I said. I think its a good way to compare frameworks. I am working on making it a little bit quicker now. It was built to parse input streams...
1664
Tatu Saloranta
cowtowncoder
May 21, 2011 4:20 pm
... Are these tests also available with source code? Results for Jackson looked odd; as if some assumptions were being made that are not true (assuming...
1665
marsdenjw
May 23, 2011 10:49 am
Hi Tatu, If that question was addressed to me, then no, I dont have the source. I just made unit tests for each test I was said to fail and went from there...
1666
Tatu Saloranta
cowtowncoder
May 23, 2011 5:42 pm
... Sorry, it was question to author, and he did actually add a link to wiki. So I was able to figure it out, and submit a patch for jackson test. I hope...
1667
uriel.chemouni
May 23, 2011 5:49 pm
do not hesitate to submit paths to my benchmark code. The new version display warmed-up JVM result, and display all results as percents. The results are easier...
1668
mehdigholam@...
mehdigholam...
Jun 9, 2011 6:22 am
Hello, As there is no JSON standard for serializing the .net TimeSpan type, are there any suggestions? We could do the following: 1. TimeSpan -> long value...
1669
Mark Slater
markosslater
Jun 9, 2011 7:37 am
You might want to take a look at ISO 8061: http://en.m.wikipedia.org/wiki/ISO_8601. I don't know about .Net, but many languages have straightforward ways of...
1670
John Cowan
johnwcowan
Jun 9, 2011 1:53 pm
... The ISO 8601 standard represents a duration in days, hours, minutes, and seconds thus: "PnnnDTnnHnnMnn.nnnS". "P" indicates a duration and is mandatory....
1671
Paul C. Bryan
paul.bryan@...
Jun 9, 2011 6:08 pm
The second draft of the JSON Patch proposal has been published: http://tools.ietf.org/html/draft-pbryan-json-patch-01 Feedback would be most appreciated. The...
1672
Petri Lehtinen
akhern...
Jun 11, 2011 8:19 pm
Jansson 2.1 is out. This release adds a few new features and fixes some minor bugs. A new decoding function, json_loadb(), was added for decoding buffers with...
1673
lambdacreations
Jun 14, 2011 6:49 pm
Hi all, After reading up and using most the major Java JSON libraries, I thought I could do something better (at least for needs similar to my own's) and here...