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: 590
  • Category: Data Formats
  • Founded: Jul 19, 2005
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 282 - 311 of 1953   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
282 msf157 Send Email Mar 7, 2006
2:44 pm
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...
283 henrik hjelte
jagarenbrape... Send Email
Mar 7, 2006
3:42 pm
... 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...
284 msf157 Send Email Mar 7, 2006
4:18 pm
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,...
285 MPCM
mpcmtechnolo... Send Email
Mar 7, 2006
4:37 pm
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...
286 henrik hjelte
jagarenbrape... Send Email
Mar 7, 2006
6:20 pm
... 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...
287 Tom Metro
tmetro+json@... Send Email
Mar 7, 2006
9:25 pm
... 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...
288 msf157 Send Email Mar 9, 2006
4:05 pm
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...
289 Douglas Crockford
douglascrock... Send Email
Mar 11, 2006
10:09 pm
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...
290 Michal Migurski
michal_migurski Send Email
Mar 11, 2006
10:41 pm
... 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...
291 Lindsay
softlog_lindsay Send Email
Mar 12, 2006
2:39 am
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...
292 Stefan Gössner
stefangoessner Send Email
Mar 12, 2006
12:18 pm
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...
293 Michal Migurski
michal_migurski Send Email
Mar 13, 2006
12:42 am
... 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...
294 Lindsay
softlog_lindsay Send Email
Mar 13, 2006
3:16 am
... 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...
295 Paul Hanlon
pthanlonie Send Email
Mar 13, 2006
6:31 am
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...
296 Michal Migurski
michal_migurski Send Email
Mar 13, 2006
6:33 am
... Asynchronous Notation? ... michal migurski- contact info and pgp key: sf/ca http://mike.teczno.com/contact.html...
297 Douglas Crockford
douglascrock... Send Email
Mar 13, 2006
7:18 pm
... 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"....
298 Douglas Crockford
douglascrock... Send Email
Mar 14, 2006
12:56 am
There is now JSON support for Emacs: http://edward.oconnor.cx/elisp/json.el...
299 jrblite Send Email Mar 14, 2006
6:45 pm
I have some feedback on JSONRequest. There is some specific feedback, but most feedback is on the general problem. It is posted here: ...
300 Douglas Crockford
douglascrock... Send Email
Mar 15, 2006
1:49 am
The Java package now includes a JSONWriter for generating JSON text to a stream. The JSONObject and JSONArray also have write methods. ...
301 Douglas Crockford
douglascrock... Send Email
Mar 17, 2006
6:45 pm
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...
302 mister_curry_personal
mister_curry... Send Email
Mar 20, 2006
6:37 pm
JSON Newbie question: Given the following string: { "parent": { "child": "Hello&#92;!" } } And asking a JSON parser to parse it, what is the expected behavior? ...
303 Douglas Crockford
douglascrock... Send Email
Mar 20, 2006
10:43 pm
... 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...
304 Blake Seely
blakeseely_99 Send Email
Mar 22, 2006
1:00 am
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:...
305 RouteSlip.com
ryanhca Send Email
Mar 23, 2006
9:19 pm
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 ...
306 Douglas Crockford
douglascrock... Send Email
Mar 23, 2006
9:38 pm
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 ||...
307 Ryan Huff
ryanhca Send Email
Apr 3, 2006
1:42 am
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...
308 Pavan Kumar Keely
keelypavan Send Email
Apr 3, 2006
3:06 am
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: ...
309 dnc_octopus Send Email Apr 5, 2006
8:09 pm
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...
310 Lindsay
softlog_lindsay Send Email
Apr 5, 2006
11:20 pm
... Post some json that fails and you source that calls the parser. -- Lindsay...
311 dnc_octopus Send Email Apr 6, 2006
7:15 pm
... 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(); ...
Messages 282 - 311 of 1953   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