Hi Folks, Recently I published "Simple Remoting" ( http://sites.google.com/site/simpleremoting/home ) java open source project on sourceforge.net . The purpose...
1359
Martin Cooper
mfncooper
Aug 28, 2009 5:03 pm
... How does this compare with DWR? -- Martin Cooper...
1360
serhat.dirik
Aug 29, 2009 3:26 pm
... Hi Martin, I don't know DWR in depth but I can say that the main difference is DWR is focused on AJAX, but SR mainly focuses on services and SOA. SR is...
1361
markosslater
Sep 1, 2009 7:22 pm
Hi, In a similar vein to several of the recent posts, I'd like to invite the group to take a look at another new open source JSON parser and generator. Argo...
1362
vivual
Sep 4, 2009 9:03 pm
Hello I've just joined this group and want to let you know about itemscript. Itemscript describes applications, components, events and data in an open,...
1363
Petri Lehtinen
akhern...
Sep 6, 2009 10:43 am
Jansson 1.0.1 out! This is a bugfix release. Changes: * Fixed broken json_is_boolean() Download source:...
1364
ricjohnsoniii
Sep 8, 2009 1:17 am
Just wanted to say that the json.com website is down. We will try to get it back up ASAP. Please note: We consider this a CRIMINAL ACT by the hosting company...
1365
douglascrockford
douglascrock...
Sep 8, 2009 2:32 am
... For what it's worth, json.org is hosted at 1&1. I've been happy with them. http://www.1and1.com/?k_id=10219574...
1366
Petri Lehtinen
akhern...
Sep 8, 2009 2:20 pm
Jansson 1.0.2 out! This is a bugfix release in the 1.0 release series. Changes: * Handle EOF correctly in decoder Download source:...
1367
crzy4c
Sep 10, 2009 10:03 pm
Ok that just sucks... But as far as "backing up content" have you tried to search out the json.com pages on google and then retrieve the cache'd pages from...
1368
s.pozzati
Sep 11, 2009 6:58 am
Hi, I've developed a VB.NET (Framework 2.0) version of JSON parser that convert objects to JSON's strings and viceversa. Yuo can view the code and download the...
1369
deadpixi.software
deadpixi.sof...
Sep 12, 2009 9:59 pm
Hi everyone, Thought y'all might be interested in another project of mine: Jenner. Jenner is a completely in-browser template engine, using JSON as the model...
1370
douglascrockford
douglascrock...
Sep 13, 2009 9:51 pm
The following links appear to have died: <a href="http://blog.beef.de/2008/01/04/tinyjson/">TinyJSON</a>. <a...
1371
Petri Lehtinen
akhern...
Sep 14, 2009 12:34 pm
Jansson v1.0.3 out! This is a bugfix release in the 1.0 release series. Changes since v1.0.2: * Check for integer and real overflows and underflows in decoder ...
1372
Shalab Goel
duhita
Sep 14, 2009 4:19 pm
Hello, Is there a standard way to represent the information in following XML snippet as JSON output. <attributes> <attribute a1="v1">value1</attribute> ...
1373
Tatu Saloranta
cowtowncoder
Sep 14, 2009 4:50 pm
... It depends on what you'd expect to get out of it, but I think the answer is no: there is nothing obvious and standard. It really depends on meaning of data...
1374
Jakob Kruse
thekrucible
Sep 14, 2009 5:39 pm
”instead of "the" standard, there however multiple competing standard proposals […] that do allow converting any XML content into well-formed […]...
1375
Mark Joseph
markjoseph_sc
Sep 14, 2009 6:20 pm
To do the XML to JSON conversion I use our XSLT (which can also go the other way as well) <xsl:output method=’json’/> ...
1376
Tatu Saloranta
cowtowncoder
Sep 14, 2009 7:31 pm
... Perhaps I should have worded it as "try to allow...". And that they do it with varying level of success -- as you point out, badgerfish fails for that...
1377
Andrea Giammarchi
an_red...
Sep 14, 2009 7:32 pm
In taht way you are loosing data type. If interested, this is not that standard but kinda an easy spec to follow (plus a script) ...
1378
Andrea Giammarchi
an_red...
Sep 14, 2009 7:32 pm
er, me too in the precedent link there is a demo: http://www.3site.eu/JXON/ I guess my spec is simple: <element> Boolean = <boolean>true|false</boolean> Date =...
1379
Tatu Saloranta
cowtowncoder
Sep 14, 2009 7:38 pm
... Does this (JSON -> xml events) work with any JSON input? Aside from some cases that should be impossible (JSON content can include character content that...
1380
Mark Joseph
markjoseph_sc
Sep 14, 2009 7:47 pm
So the way the system works is that our JSON parser is called from a plugin to our DOM parser. That plugin calls the DOM parser API that creates nodes in the...
1381
Tatu Saloranta
cowtowncoder
Sep 14, 2009 8:04 pm
... Right, I did skim through it, it's just that article is omitting a few details. The basic idea of exposing JSON as SAX events is of course simple (and...
1382
Mark Joseph
markjoseph_sc
Sep 14, 2009 8:36 pm
But one thing I didn't see mentioned was the the question of mapping JSON arrays (it does mention use of "JSON-document” as dummy name for outermost JSON...
1383
Mark Joseph
markjoseph_sc
Sep 14, 2009 8:56 pm
... *************************************** My Response: The the code that generates JSON output detects an array in the DOM tree and generates a JSON array...
1384
Shalab Goel
duhita
Sep 14, 2009 9:23 pm
Thank you for all the responses. I guess there were two parts to it. I was specifically interested in your insights on a XML element with both text and ...
1385
Andrea Giammarchi
an_red...
Sep 14, 2009 9:24 pm
I do not get all these problems ... first of all I expect that JSON to XML will parse JSON first and then create XML via proper namespace/libarry and character...
... Ok. So DOM tree does have extra metadata that indicates this "array-ness". I assumed that DOM tree itself had no knowledge of this, given that SAX API...