When not to use JSON?
Answers were Sorted based on User's Feedback
Answer / salil
We use JSON mostly when data exchange to our own server.
We should avoid using JSON when exchanging data from partner
sites. As JSON may contain some malicious script. XML would
be a better option here.
| Is This Answer Correct ? | 25 Yes | 7 No |
Answer / abid
JSON is data format used in the transmission of data. It's
used primarily in Javascript AJAX calls.
JSON's structure is simply bracketed name:value pairs.
Because of it's compact nature and simplicity it's a better
structure for the transmission of relatively small datasets
and things that can be grouped into name:value pairs.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / mohammad tareque
When ever you want to send data in array format, then only you
should use JSON.
| Is This Answer Correct ? | 5 Yes | 15 No |
What are the disadvantages of Ajax?
How was ajax killed?
Explain limitations of ajax.
What are all the browsers support AJAX?
Are there any frameworks available to help speedup development with ajax?
Don't be too quick to dump your plugin or applet based portions of your application. While ajax and dhtml can do drag and drop and other advanced user interfaces there still limitations especially when it comes to browser support. Plugins and applets have been around for a while and have been able to make ajax like requests for years. Applets provide a great set of ui components and apis that provide developers literally anything.
Describe the ajax design pattern.
What are the components of the ASP.NET Ajax Client Library?
What are all the features of Ajax?
Does java have support for comet style server-side push?
What is the Difference between AJAX and Javascript?
What is the xmlhttprequest object in ajax?