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...
Show off your group to the world. Share a photo of your group with us.

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 530 - 559 of 1409   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
530
I joined this group yesterday because I was having a problem with JSON. While my membership was getting approved, I came up with a solution, but I will post...
ianscottspiro
Offline Send Email
Oct 1, 2006
5:00 pm
531
Well I'm not sure what's going on on your end, but I use JSON strings being received via an XMLHTTPReq process all the time and have never had to "Esc" the...
crzy4c
Offline Send Email
Oct 1, 2006
11:41 pm
532
I updated the parseJSON method. I removed the string deletion phase which was a added as a workarond for IE's exponential regexp performance. We found that IE...
Douglas Crockford
douglascrock...
Offline Send Email
Oct 5, 2006
6:04 pm
533
Today, I thought of an XML representation for JSON and I came up with something like; //Sample JSONML xml file <?xml version="1.0" encoding="UTF-8"?> <Object...
Mert Sakarya
mertsakarya
Offline Send Email
Oct 11, 2006
8:23 pm
534
... From: Mert Sakarya <mertsakarya@...> Date: Oct 11, 2006 3:34 PM Subject: [json] A heavy-weight alternative to JSON : JSONML (a standard for fun) ...
Justin Day
potatono
Offline Send Email
Oct 11, 2006
8:30 pm
535
in the spirit of not reinventing the weel every time, you might as well take the xml-rpc xml, strip off datetime, int and base64 and add null, and you're done ...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Oct 12, 2006
7:41 am
536
I made a dynamic json object at run time in a web page via JScript. Contructed in a js for loop. The I parse it. Now I'm posting it to another page via jQuery...
imran_aziz_ca
Offline Send Email
Oct 13, 2006
2:17 am
537
You are posting your data to a server-side page (asp in your example), so you need a JSON parser written for that technology. If your ASP pages are written...
Mert Sakarya
mertsakarya
Offline Send Email
Oct 13, 2006
8:41 am
538
Hi, I am working on a new project and I can choose XML, JSON, straight JavaScript or a custom format for transmitting data between browser JavaScript and...
Peter Michaux
petermichaux
Offline Send Email
Oct 13, 2006
8:35 pm
539
Hi, By extending the Object.prototype with the new property toJSONString I can no longer use for-in loops in my JavaScript. Has someone released a version of...
Peter Michaux
petermichaux
Offline Send Email
Oct 14, 2006
5:59 am
540
... Peter, This is pretty much what we do and it works fine. The only problem we had initially was with numbers and Perl and the 2 different JSON ...
Martin J. Evans
martin.evans@...
Send Email
Oct 14, 2006
7:44 am
541
... this is a design flaw in Javascript. You need to check the hasOwnProperty() method when iterating in a for..in loop: for(k in obj) ...
Philip Tellis
philiptellis
Offline Send Email
Oct 14, 2006
10:46 am
542
... It is what I would do. To send it to the server, I'd pass it as a POST parameter: var content = "json=" + encodeURIComponent(myObject.toJSONString()); ...
Philip Tellis
philiptellis
Offline Send Email
Oct 14, 2006
10:54 am
543
... As another poster mentioned, using hasOwnProperty(), is the way to make the intended behavior work. My understanding is that hasOwnProperty() isn't widely...
Tom Metro
tmetro+json@...
Send Email
Oct 14, 2006
7:14 pm
544
It's easy to modify json.js so it doesn't extend Object.prototype. That was a bad design in my opinion. The version I use is attached. Scott ... [Non-text...
Scott Chapman
chappie_mischko
Offline Send Email
Oct 14, 2006
7:54 pm
545
... It's not just exceptionally bad design, it's chronically inconsiderate programming. Nobody could use that code inside portlets, because they'd risk ...
Martin Cooper
mfncooper
Online Now Send Email
Oct 14, 2006
9:53 pm
546
Hi All, I am wondering if there is anything called as JSON Schema and a validator to validate my JSON data. I use a lot of nested JSON data and it takes more...
Pradhap Nirmal Natara...
pradhapnirmal
Offline Send Email
Oct 16, 2006
5:28 pm
547
Last week somebody had posted this http://tech.groups.yahoo.com/group/json/message/533 You can also use the JSON Api's for various languages as validators. ...
Cheenu
cheenu321
Offline Send Email
Oct 16, 2006
6:36 pm
548
Thanks for the reply Cheenu, But I am looking for a simple validator. Say I write a schema, pass the json data and the schema to a validator written in any...
Pradhap Nirmal Natara...
pradhapnirmal
Offline Send Email
Oct 17, 2006
3:48 am
549
Hi, I am new to JSON an I am learning JSON. I have a question for the group. I have a button and onclick of the button, I am calling a servlet and I want to...
krish777
Offline Send Email
Oct 22, 2006
7:42 pm
550
Hi, I am new to JSON an I am learning JSON. I have a question for the group. I have a button and onclick of the button, I am calling a servlet and I want to...
krish777
Offline Send Email
Oct 22, 2006
7:42 pm
551
... JSON doesn't know how to serialize your Employee object into JSON. You'll want to do something like: List emps = new ArrayList(); { JSONObject jsonEmp =...
Josh Sled
joshsled
Offline Send Email
Oct 22, 2006
8:27 pm
552
Thanks Josh, it works!!!!!. ... JSON doesn't know how to serialize your Employee object into JSON. You'll want to do something like: List emps = new...
krishnappan
krish777
Offline Send Email
Oct 23, 2006
12:51 am
553
If I remember right, Microsoft has a means of sharing objects between VBscript and Jscript in IE (and any other Active Scripting language), so in theory you...
Preston Bannister
pbannister
Offline Send Email
Oct 26, 2006
3:17 am
554
I revised json.js to clarify specification issues in the proposed ECMAScript 4th Edition standard. It now encodes dates as formal ISO strings. By adding a...
Douglas Crockford
douglascrock...
Offline Send Email
Oct 29, 2006
11:11 pm
555
Hi Douglas, At first glance it looks like it was much easier to modify the old file so that it didn't affect any built in prototypes and brake for-in loops. Do...
Peter Michaux
petermichaux
Offline Send Email
Oct 29, 2006
11:44 pm
556
... From: Douglas Crockford <douglas@...> To: json@yahoogroups.com Sent: Monday, October 30, 2006 7:08:33 AM Subject: [json] json.js I revised...
Joshua Raphael Fuentes
joshuarpf
Offline Send Email
Oct 30, 2006
12:47 am
557
... I agree with Peter. Sure, these methods might become part of the language next year, but there should be a way for people to use the code today without...
Martin Cooper
mfncooper
Online Now Send Email
Oct 30, 2006
5:39 pm
558
Hi folks. I am new to the group. I am interested in defining the expected structure of JSON objects in a way that can be programmatically introspected. Such...
hweingram
Offline Send Email
Oct 31, 2006
9:20 am
559
... Early on I designed a schema notation for JSON in JSON. But on reflection, it didn't appear to do anything that an application shouldn't already be doing...
Douglas Crockford
douglascrock...
Offline Send Email
Oct 31, 2006
4:17 pm
Messages 530 - 559 of 1409   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