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 282 - 311 of 1409   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
282
Is it posible to compress JSON files, gzip or something else? Am using JSON-PHP to send JSON files to my AJAJ javascript front end. When I turn on GZIP...
msf157
Offline Send Email
Mar 7, 2006
2:44 pm
283
... Not that I've tried compressing JSON, or have any experience with either PHP or JSON-PHP but I'm sure it's possible. As a fact, I will eat my hat if your...
henrik hjelte
jagarenbrape...
Offline Send Email
Mar 7, 2006
3:42 pm
284
I am sure this has nothing to do with the actual JSON files, but I am sending the files to the browser in gzip form and they should automagiacally decompress,...
msf157
Offline Send Email
Mar 7, 2006
4:18 pm
285
The communication itself should be doing the compression and undoing before it gets anywhere near the js. Is this what you are doing? Or are you sending a...
MPCM
mpcmtechnolo...
Offline Send Email
Mar 7, 2006
4:37 pm
286
... I think you have to set the proper value of the http response content-type, to a value like text/gzip or text/zip. It sort of depends on the browser if I...
henrik hjelte
jagarenbrape...
Offline Send Email
Mar 7, 2006
6:20 pm
287
... Yes, though it looks like Content-Type is unchanged, but a Content-Encoding header needs to be added. Here are a couple of articles on this that I found...
Tom Metro
tmetro+json@...
Send Email
Mar 7, 2006
9:25 pm
288
I finally got it working. The headers were being added correctly but the encoding was not. I switched methods of compression and it works perfectly. The...
msf157
Offline Send Email
Mar 9, 2006
4:05 pm
289
I am proposing a new mechanism for doing data transport in Ajax/Comet applications. It is called JSONRequest. It is a minimal communications facility that can...
Douglas Crockford
douglascrock...
Online Now Send Email
Mar 11, 2006
10:09 pm
290
... Two comments, based on a quick initial read: 1) The timeout feels unnecessary, and potentially a hassle for debugging purposes. It should be left to lower...
Michal Migurski
michal_migurski
Offline Send Email
Mar 11, 2006
10:41 pm
291
Hi all, am using JSON RPC for my PHP web app - thats been working brilliantly. One oversight in the spec is that there appears to be no way of specifying...
Lindsay
softlog_lindsay
Offline Send Email
Mar 12, 2006
2:39 am
292
Sounds really very interesting. 1. Is there a test implementation to play with? 2. What is the motivation behind the limitations of data size and nesting...
Stefan Gössner
stefangoessner
Offline Send Email
Mar 12, 2006
12:18 pm
293
... I don't think this can be resolved in the spec - it would require a way to reference object in JSON, and some concept of object equivalence between the...
Michal Migurski
michal_migurski
Offline Send Email
Mar 13, 2006
12:42 am
294
... I was just adding a extra attribute (object) to the RPC object, e.g. { "object": "S12", "method": "echo", "params": ["Hello JSON-RPC"], "id": 1} The object...
Lindsay
softlog_lindsay
Offline Send Email
Mar 13, 2006
3:16 am
295
Hi all, Sorry to come late to the party on this. With regard to what to call the json technology, what about aeon (asynchronous ecmascript object notation). It...
Paul Hanlon
pthanlonie
Offline Send Email
Mar 13, 2006
6:31 am
296
... Asynchronous Notation? ... michal migurski- contact info and pgp key: sf/ca http://mike.teczno.com/contact.html...
Michal Migurski
michal_migurski
Offline Send Email
Mar 13, 2006
6:33 am
297
... Not yet, but I hope to make some announcements soon. ... It should go somewhere. I think there should be some limit other than "whatever you can imagine"....
Douglas Crockford
douglascrock...
Online Now Send Email
Mar 13, 2006
7:18 pm
298
There is now JSON support for Emacs: http://edward.oconnor.cx/elisp/json.el...
Douglas Crockford
douglascrock...
Online Now Send Email
Mar 14, 2006
12:56 am
299
I have some feedback on JSONRequest. There is some specific feedback, but most feedback is on the general problem. It is posted here: ...
jrblite
Offline Send Email
Mar 14, 2006
6:45 pm
300
The Java package now includes a JSONWriter for generating JSON text to a stream. The JSONObject and JSONArray also have write methods. ...
Douglas Crockford
douglascrock...
Online Now Send Email
Mar 15, 2006
1:49 am
301
The JSONRequest does only one thing: It exchanges data between scripts on pages with JSON servers in the web. It provides this highly valuable service while...
Douglas Crockford
douglascrock...
Online Now Send Email
Mar 17, 2006
6:45 pm
302
JSON Newbie question: Given the following string: { "parent": { "child": "Hello\!" } } And asking a JSON parser to parse it, what is the expected behavior? ...
mister_curry_personal
mister_curry...
Online Now Send Email
Mar 20, 2006
6:37 pm
303
... The \! is not strictly JSON, so a parser is free to do what it wants with it. Some reasonable options would be treat it as ! treat it as \\! treat it as a...
Douglas Crockford
douglascrock...
Online Now Send Email
Mar 20, 2006
10:43 pm
304
I updated my NSDictionary JSON methods so the output is now indented and easier to read. (Version 1.0 simply output one long string). Posting/Info/Download:...
Blake Seely
blakeseely_99
Offline Send Email
Mar 22, 2006
1:00 am
305
Hi. I'm pretty experienced with Javscript but totally new to JSON and have a question... Is it possible to use JSON to "populate" objects that are already ...
RouteSlip.com
ryanhca
Offline Send Email
Mar 23, 2006
9:19 pm
306
There are a number of approaches. An elegant one is to pass an initialization object to the constructor. function class2(init) { this.prop1 = init.prop1 ||...
Douglas Crockford
douglascrock...
Online Now Send Email
Mar 23, 2006
9:38 pm
307
Hello. Ordinarily I wouldn't ask others to debug a problem I'm having with MY code, but I'm stuck. Being a total newbie to JSON, I'm afraid I don't have enough...
Ryan Huff
ryanhca
Offline Send Email
Apr 3, 2006
1:42 am
308
Hi Ryan, When you eval a json string, enclose that string in between "(" and ")". So, to correct your example, the json part of the eval statement would be: ...
Pavan Kumar Keely
keelypavan
Offline Send Email
Apr 3, 2006
3:06 am
309
Hi. I'm trying to use json.parse on server-side javascript under IIS. This gives errors or returns false with "perfectly good" json strings. The process is to...
dnc_octopus
Offline Send Email
Apr 5, 2006
8:09 pm
310
... Post some json that fails and you source that calls the parser. -- Lindsay...
Lindsay
softlog_lindsay
Offline Send Email
Apr 5, 2006
11:20 pm
311
... Ok. I build an object like this on the client side just for testing: function fazJSON() { var mObj = new Object; mObj.Time = new Date().getTime(); ...
dnc_octopus
Offline Send Email
Apr 6, 2006
7:15 pm
Messages 282 - 311 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