Search the web
Sign In
New User? Sign Up
json · JSON JavaScript Object Notation
? 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.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 340 - 370 of 1408   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
340
Enter your vote today! A new poll has been created for the json group: Which of the following data communication methods do you use ? o JSON . [Object...
json@yahoogroups.com
Send Email
May 5, 2006
3:57 pm
341
This is a silly poll. You can only select one of the options and I want to select three of them. Nic...
Nic
nicferrier2000
Offline Send Email
May 5, 2006
7:14 pm
342
There is an interesting new Java implementation at http://developer.berlios.de/projects/jsontools/...
Douglas Crockford
douglascrock...
Online Now Send Email
May 9, 2006
1:27 am
343
Lately I've been coding with Javascript and JSON a lot. I'am using XHConn.js (downloadable from http://xkr.us/code/javascript/XHConn/) as XmlHttpRequest object...
Mert Sakarya
mertsakarya
Offline Send Email
May 23, 2006
8:38 am
344
Hi all, i'm new in the JSON world and I'm searching in it a good alternative to XML. To begin, I translated some XML data in JSON format, and I crashed soon...
Marco Rosella
marcorosella
Offline Send Email
May 23, 2006
2:39 pm
345
... There are many ways that you could render that into JSON. This is how org.json.XML does it in Java: {"book": {"chapter": [ "Content of the first chapter", ...
Douglas Crockford
douglascrock...
Online Now Send Email
May 23, 2006
2:50 pm
346
Can we use function definitions in JSON? Eg. {"book": { "name": "bookname", "chapter": [...], "gotoChapter" : function(chapterId) {...} } } And how about using...
Mert Sakarya
mertsakarya
Offline Send Email
May 23, 2006
3:29 pm
347
... Please, no! That violates just about everything JSON is about. If you want to pass functions around, just use JavaScript in the first place, and forget ...
Martin Cooper
mfncooper
Offline Send Email
May 23, 2006
4:11 pm
348
You might want to look at the Dojo toolkit. It already has a JSDL implementation that it uses along with its JsonService class for JSON-based remote calls. -- ...
Martin Cooper
mfncooper
Offline Send Email
May 23, 2006
4:16 pm
349
You know Mert -- I think you are on to something here but I have to suggest an alternative to your implementation -- I personally can't readily accept a...
Greg Patnude
gregpatnude
Offline Send Email
May 23, 2006
4:22 pm
350
First Post - I see most environments are covered with a library for json except Classic ASP. I have one last major development to do with it before moving on...
neil_b
Offline Send Email
May 23, 2006
9:52 pm
351
I think why JSON be successful as a data-interchange format is its simplicity and neutral nature for many languages. Adding function definition just make JSON ...
Fang Yidong
fangyidong
Offline Send Email
May 24, 2006
1:45 am
352
Mert, it seems to me that what you are proposing here is rather a JavaScript service proxy than a description language. A description language would be just...
Atif Aziz
azizatif
Offline Send Email
May 24, 2006
7:44 am
353
... Agreed. Maybe define a std date format, there's a ISO one which would do fine. -- Lindsay...
Lindsay
softlog_lindsay
Offline Send Email
May 25, 2006
11:35 pm
354
I have a JSON compatible date parser which converts a stringified version of a C-Type date (mm-dd-yyyy hh:mm:ss.nnnn [AM:PM]) into a JavaScript native Date...
Greg Patnude
gregpatnude
Offline Send Email
May 26, 2006
3:25 pm
355
I think everyone is missing teh point I am trying to make --- I truly believe that "Object Notation" is the holy grail of data interchange. As a result, I...
Greg Patnude
gregpatnude
Offline Send Email
May 26, 2006
3:38 pm
356
... Why the C format? Why not base it on the ISO standard, if we have to include dates in JSON? And if the above format actually defines what you have, then ...
Martin Cooper
mfncooper
Offline Send Email
May 26, 2006
4:33 pm
357
... Maybe I'm missing something, but why wouldn't one simply use the standard unix time? It does not rely on time-zones (which people seem to largely ignore on...
Christopher Stumm
christopher....
Offline Send Email
May 26, 2006
4:43 pm
358
Greg, I've given this a bit of thought too, but in the end this would only complicate matters exponentially. Making a simple data parser is one thing, but...
Dave Balmer
dbalmerjr
Offline Send Email
May 26, 2006
7:10 pm
359
Hello everyone, I've got another question. I love JSON and the idea behind it. It is cool and generic. I am using JSON, with Javascript on the client-side with...
Mert Sakarya
mertsakarya
Offline Send Email
May 26, 2006
8:31 pm
360
If you say just JSON, people will assume that you are talking about the current spec. I'm guessing most people use eval at least on the Javascript side. If you...
MPCM
mpcmtechnolo...
Offline Send Email
May 26, 2006
8:52 pm
361
It is originally based on converting a date-time string from an ANSI SQL database into a JavaScript UTC time... The ANSI SQL datetime (timestamp) appeared to...
Greg Patnude
gregpatnude
Offline Send Email
May 26, 2006
9:06 pm
362
It's not necessary to add Date SPEC to JSON to make things work. JSON just give you the freedom to do whatever you want. I've used JSON.simple to exchange...
Fang Yidong
fangyidong
Offline Send Email
May 27, 2006
4:20 am
363
Hi everyone. I'm new to this group so I'd like to say hello. My name is Pablo, despite of the dumb name in my email. My little AJAX app doesn't like the JSON...
rancioadams
Offline Send Email
May 27, 2006
4:22 am
364
... It doesn't matter how you parse it but what you put in there that makes it JOSN or not. So if you use functions, then no, it's not JSON. If, on the other...
Atif Aziz
azizatif
Offline Send Email
May 27, 2006
10:18 am
365
Show your source code of client side and server side to us, and maybe we can figure out what the problem is. ... ...
Fang Yidong
fangyidong
Offline Send Email
May 27, 2006
3:48 pm
367
Here's the server code: <meta http-equiv="content-type" content="text/html;charset=utf-8"> <?php require_once('JSON.php'); $json = new Services_JSON(); ...
rancioadams
Offline Send Email
May 27, 2006
4:41 pm
368
BTW: Here's the string returned by JSON, just in case: ["160","GENERAL DE ...
rancioadams
Offline Send Email
May 27, 2006
4:46 pm
369
... OBRA","HORMIGONERAS","REF.","TIPO","CORRIENTE","P\/HORA","LITRO","","","","","EURO\/DIA","SEG.\/DIA",null,null,null,null] ... It seems that there's a CR or...
Fang Yidong
fangyidong
Offline Send Email
May 28, 2006
4:04 am
370
Thanks but no, there's not a CR between "GENERAL DE" and "OBRA". Just some problem with the posting here. Do the nulls at the end of the string pose a problem...
rancioadams
Offline Send Email
May 28, 2006
2:15 pm
Messages 340 - 370 of 1408   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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