I would be willing to sponsor a book on json, if anyone is interested. The only caveat is that it must be published Open Source (akin to the Couch DB book) I...
1470
Wayne
wain_mike
Feb 24, 2010 11:39 pm
Jswoof v1.01 has been released for C#. This build takes care a few tiny bugs that were lingering in the parseNumber function. As usual you can get jswoof from...
1471
Arthur Blake
blakesys
Feb 25, 2010 9:13 pm
Just saw this come across my automatic updates: http://support.microsoft.com/kb/976662 <http://support.microsoft.com/kb/976662>Perhaps Microsoft has fixed the ...
1472
Dennis Gearon
gearond...
Feb 26, 2010 5:25 am
Wonder about escaping characters using a JSON API. JSON isn't JUST for browsers obviously, (moblie apps or direct B2B) would be the starting list for other...
1473
Jacob Davies
jacobwellcom
Feb 27, 2010 12:34 am
I have a question regarding the use of URL fragments (the part after the # (hash) character in a standard URL) for navigating JSON resources. So far as I can...
1474
Viktor Bresan
viktorbresan
Feb 27, 2010 1:13 am
Hi to all. I've detected some awkward behavior in org.json library and the best would be that someone convinces me that I am missing something obvious. :-) 1)...
1475
Fredag_d13
Feb 27, 2010 10:26 am
Hi Jacob I have implemented a way to navigate in a JSON object in my PLSQL JSON implementation. It's basically a subset of how you navigate within Javascript...
1476
Jacob Davies
jacobwellcom
Feb 27, 2010 5:35 pm
Thanks for the pointer to the discussion, that's what I was looking for. I guess I should also join the restful-json list. I don't think this is the end of the...
1477
Jacob Davies
jacobwellcom
Feb 28, 2010 12:24 am
One more note - I was looking at the section on normalization again: http://tools.ietf.org/html/rfc3986#section-6.2.2 and this paragraph stood out: "The...
1478
Kris Zyp
kriszyp
Feb 28, 2010 8:26 pm
[+restful-json] Jacob, You may already be aware of this, but a specification for the dot-delimited hash/fragment resolution mechanism is in the JSON Schema I-D...
1479
farkmischer
Mar 8, 2010 6:44 pm
I am trying to figure out how to send an image from my hard drive to Tuzulo using their api which appears to use JSON (quoted below). I have figured out how...
1480
Michael Schøler
michael.scholer
Mar 8, 2010 9:29 pm
Hi, The only thing that pops to my mind is base64 encoding. JSON is not a suited container for binary data (see <http://www.json.org/> http://www.json.org/ ...
1481
Fredag_d13
Mar 8, 2010 9:33 pm
To store binary data in a json string, you could use base64 or something similar. However it is more likely, that you should just post your binary data to the...
1482
Mark Joseph
markjoseph_sc
Mar 9, 2010 2:18 am
Or you could use another encoding that was designed to handle binary data, and that is ASN.1 with BER or DER encoding. Best, Mark Joseph, Ph.D. President P6R,...
1483
Jacob Davies
jacobwellcom
Mar 9, 2010 2:48 am
It's going to depend on the API, though I assume that most sites are going to want you to send the data via the multipart/form-data encoding that is used for...
1484
Dennis Gearon
gearond...
Mar 9, 2010 3:49 am
I personally set my API up using 'out of band' uploading. Direct POSTing of the image (multipart encoding), and then put the url of the image resource in the...
1485
Tatu Saloranta
cowtowncoder
Mar 9, 2010 7:04 am
... This really depends on implementation: at least fast java encoders can do with about same overhead as space expansion causes (33%). While higher relative...
1486
Jorge Chamorro
george_of_th...
Mar 9, 2010 10:20 am
... The browser can upload a local file to a server via a form through a POST, but your page's javascript code can't touch nor read a local file at all, at...
1487
Wayne
wain_mike
Mar 9, 2010 10:30 pm
Hi all, Just a quick note to let you all know that jswoof has been ported to JAVA. And is now ready for download. As usual you can grab jswoof from the...
1488
farkmischer
Mar 10, 2010 5:06 am
In response to a couple of quesitons I am using ASP.Net to do this so I do have access to the filesystem. Over the last few days I have determined in .net how...
1489
Jacob Davies
jacobwellcom
Mar 10, 2010 5:49 am
Hi, We have a new release of the Itemscript JSON library for standard Java and GWT-Java, with a RESTful in-memory database. The project page with a feature...
1490
Josh Sled
joshsled
Mar 10, 2010 2:23 pm
... You should ask tuzulo.com about how to use their API. This isn't a tuzulo.com support forum, and your question is only tangentially related to json. -- ...
1491
farkmischer
Mar 10, 2010 3:00 pm
I apologize, you are right. I started out not even knowing how to use JSON so that is why I started here. Now that I figured out how to use JSON in .net I...
1492
Patrick
patmaupin
Mar 13, 2010 12:03 am
I am developing a superset of JSON called RSON (Readable Serial Object Notation), at http://code.google.com/p/rson/ (Not that JSON isn't eminently readable,...
1493
Gregg Irwin
greggirwin143
Mar 16, 2010 7:53 am
Hi Patrick, P> I am developing a superset of JSON called RSON (Readable Serial P> Object Notation), at http://code.google.com/p/rson/ I know there was a pyson...
1494
Patrick Maupin
patmaupin
Mar 16, 2010 3:24 pm
... I agree that it came out that way. And I do code in Python, but frankly, I started using YAML, and then changed it until I got something I like (which...
1495
Tatu Saloranta
cowtowncoder
Mar 16, 2010 5:10 pm
... Yes. YAML is a good candidate to explain concept of "Too Much of Everything" (or, "American Ice Cream syndrome" :-)). It is unfortunately quite common to...
1496
Patrick
patmaupin
Mar 21, 2010 5:40 pm
I am pleased to announce the release of RSON 0.06. The goal of the RSON project is to create a file format that is easy to edit, diff, and version control,...
1497
Michael Schøler
michael.scholer
Mar 21, 2010 6:43 pm
Hi Patrick, Is the ordering of the data elements irrelevant in RSON to JSON, or is the manual in error? For example, business logic could (in some cases)...