Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

json · JSON JavaScript Object Notation

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 593
  • Category: Data Formats
  • Founded: Jul 19, 2005
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 1358 - 1387 of 1968   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1358 serhat.dirik Send Email Aug 28, 2009
3:48 pm
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 Send Email
Aug 28, 2009
5:03 pm
... How does this compare with DWR? -- Martin Cooper...
1360 serhat.dirik Send Email 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 Send Email 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 Send Email 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... Send Email
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 Send Email 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... Send Email
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... Send Email
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 Send Email 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 Send Email 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... Send Email
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... Send Email
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... Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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... Send Email
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... Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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... Send Email
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...
1386 Mark Joseph
markjoseph_sc Send Email
Sep 14, 2009
9:47 pm
********************************** From: Shalab Goel [mailto:goel.shalab@...] To: json@yahoogroups.com Sent: Mon, 14 Sep 2009 14:23:34 -0700 Subject: Re:...
1387 Tatu Saloranta
cowtowncoder Send Email
Sep 14, 2009
10:23 pm
... 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...
Messages 1358 - 1387 of 1968   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help