... JSON ... below. That ... without ... you would ... set of ... It's ... you're ... the clarity ... create and ... but ... I use a mechanism similar to the...
440
geoffreyk00
Jul 3, 2006 3:20 pm
... double ... then ... Are you using eval like this? eval('(39; + theResponse + ')'); the '(' and ')' are important. I recently was bit by not having these ...
441
Henrik Hjelte
jagarenbrape...
Jul 3, 2006 3:42 pm
... The spec says: char any-Unicode-except-"-or-\-or-control \" \\ \/ \b \f \n \r \t \u four-hex-digits The first line is most important, and it says you...
442
chris_nappin
Jul 4, 2006 11:19 am
Hi, Thanks for the reply. Yes, I am using eval exactly as you describe. I can also copy and paste the code into a standalone HTML test page and run it through...
443
Mert Sakarya
mertsakarya
Jul 4, 2006 2:49 pm
Hi everyone, I've got a web application for your review on the following address; http://ms.yenibiris.com/YB.help The idea is to bring the data layer to the...
444
Fang Yidong
fangyidong
Jul 5, 2006 1:37 am
Hi,I notice that the result of your JSON service[http://ms.yenibiris.com/YB.GetIKPageDays.json] does not conform to the JSON specification? {/*JSON...
445
chris_nappin
Jul 5, 2006 11:28 am
I've added some further debug and there are no characters in the JSON string with ASCII values below 32 or above 125. I can't think of anything else to try, or...
446
geoffreyk00
Jul 5, 2006 3:05 pm
... can ... is ... My *guess* is that the problem is somewhere else on your page. I would try taking the page apart, piece by piece untill the problem goes ...
447
chris_nappin
Jul 6, 2006 9:29 am
... Thanks for the offer. Unfortunately the page is huge and dynamically generated using a complex XSLT sub-system, plus a lot of the JavaScript is held in...
448
json@yahoogroups.com
Jul 6, 2006 9:30 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the json group. File : /JSON-debug.html ...
449
Michael Schwarz
schwarz_inte...
Jul 11, 2006 7:27 am
Hi, I've extracted the JSON parser from Ajax.NET Professional library to use as a stand-alone library. The JSON parser (AjaxPro.JSON.2.dll and ...
450
Michael Schwarz
schwarz_inte...
Jul 11, 2006 2:35 pm
Hi, I'd like to know if there are already some common representations of common types like following .NET data types: - DataSet, DataTable - Dictionary - List,...
451
Atif Aziz
azizatif
Jul 11, 2006 3:26 pm
Hi Michael, JSON already has mappings for types like dictionaries, lists and collections, so there is no need for a common representation there. Dictionaries...
452
2
todd_kingham
Jul 11, 2006 4:23 pm
Good question. Unless Im mistaken a Dictionary is pretty much an associative array, which will follow the pattern of: {key:value,key:value,key:value}, and...
453
Atif Aziz
azizatif
Jul 11, 2006 5:26 pm
I think you'll have a hard time getting input on standardization of DataSets because most folks who are not familiar with .NET Framework may have no clue...
454
cec canonigo
canonigo101
Jul 12, 2006 9:06 am
how and where will i start? like i want to apply the insert, delete, update and search SQLstatement. what are the methods i could apply in my JSP page. cec ...
455
rogue_pedro
Jul 12, 2006 5:47 pm
Hi, I really love JSON and I praise the day Douglas came up with it. It's a truly useful spec, and anything that keeps XML at arm's length is good news to me....
456
Michal Migurski
michal_migurski
Jul 12, 2006 6:32 pm
... Good question, I also had no idea this was the case. My decoder, JSON-PHP, has no problem with decoding atoms, since it's based on the apparently more...
457
Fang Yidong
fangyidong
Jul 12, 2006 7:27 pm
Agreed. The value seems more logically like a start in the grammar,although there's a 'hidden39; start (start->object|array) according to the nonnormal ...
458
Todd
todd_kingham
Jul 12, 2006 8:40 pm
“JSON is built on two structures:” I think if you look a little further into the spec on JSON.org you will see that in addition to these two basic...
459
Atif Aziz
azizatif
Jul 12, 2006 8:59 pm
I'm afraid that Simon is right. The Internet Draft clearly states, "A JSON text is a serialized object or array." The JSON-text production is defined as...
460
Todd
todd_kingham
Jul 12, 2006 9:12 pm
Thanks for the great feedback Atif. But Im really not looking to introduce behavior into JSON at all. I dont think we even need to get that in depth in...
461
rogue_pedro
Jul 14, 2006 2:04 am
... No problem.. I hate to be the bearer of bad news.. :) Incidentally, though, if you didn't go with ... I just didn't see it at first. www.json.org had...
462
Mert Sakarya
mertsakarya
Jul 17, 2006 7:04 am
Hi, I am using readonly datasets in the following format; { "DataSet" : { "Tables" : [ { "Fields" : ["Column1","ImgDate","Column2"], "Records" : [ ...
463
Fang Yidong
fangyidong
Jul 17, 2006 7:26 am
If used in general purpose,maybe it's good to add the table name and the field datatypes in the metadata section. ... === message truncated === -- JSON: Action...
464
Michael Schwarz
schwarz_inte...
Jul 17, 2006 10:37 am
Because I'm currently using .NET data types in my JSON parser, do you think it would be a good idea to use common data type identifiers like used in XML...
465
Fang Yidong
fangyidong
Jul 17, 2006 12:15 pm
Common datatypes seem to be a good idea. Maybe we can do 'JSON schema'? :-) But as to XML schema, I think it's too complicated. ... ...
466
Michael Schwarz
schwarz_inte...
Jul 17, 2006 12:30 pm
Here is an example I'm currently using: { "dataSet" : { "tables" : [ { "name": "My Table 1", "columns" :...
467
Michael Schwarz
schwarz_inte...
Jul 17, 2006 12:39 pm
I've done some test on that, and almost all simple web services that offer JSON as output could be compiled using the XSD compiler inside .NET SDK, what was...
468
Fang Yidong
fangyidong
Jul 17, 2006 1:07 pm
Because string,number,boolean and null is build-in in JSON,maybe types represented in string like 'date' be more helpful. ... ...