1
vote
1answer
11 views
Mimetypes for a RESTful API
The Sun Cloud API at http://kenai.com/projects/suncloudapis/pages/Home is a good example to follow for a RESTful API. True to RESTful principles, when you GET a resource you get n …
1
vote
1answer
27 views
XML <-> JSON conversion in Javascript
Hi,
Does anyone know of a good solution to convert from XML to JSON and then back to XML?
I found two tools for jquery, xml2json & json2xml.
Each of these works very well - …
-1
votes
1answer
19 views
Jquery.AjaxComplete and not executing specific code if I want
For example I have general code for catching json, that says - "its error request". This code is in ajaxComplete, how can I stop executing specific code from ajaxComplete point?
$ …
1
vote
3answers
44 views
Learning JSON in relation to php
Anyone knows where i can get good introduction info on json in relation to php
0
votes
6answers
53 views
Error at json: “missing ] after element list” or just “undefined”
Hello!
I have a json like:
{"156644":{ "name":"name1",
"street":"street1",
"city":"city1"
"68656":{ "name":"name2 ",
"street":"street2",
…
1
vote
2answers
34 views
Using only JQuery to update Twitter (OAuth)
Hi,
we would like to send a JSON update command to twitter, but only using JQuery, not having to go to the webserver and have it done in PHP.
The thing I can't grasp really is ho …
10
votes
16answers
553 views
Why is Everyone Choosing JSON Over XML for jQuery?
I thought XML is highly portable and can be used as a mini database. I have seen XML used everywhere. I even see large companies switching over to JSON. Even Microsoft has integrat …
3
votes
1answer
26 views
How should one provide links in RESTful service using a non-XML data representation?
Hi all
I've been doing a lot of reading lately about how to implement truly RESTful WS's. A lot of people have linked to the article here which details several constraints that i …
0
votes
1answer
16 views
How to get live stock data from the SIX Swiss Exchange?
Hi
Do anybody have any experience with retrieving live stock data for a specific stock from SIX Swiss Exchange? Preferably as JSON data since I am going to display it on a website …
1
vote
6answers
63 views
Consuming JSON object in PHP, sent from jQuery
Hi all,
I'm sending a JSON object to PHP using jQuery via
$.ajax({
url: myURL,
type: 'POST',
contentType: "application/json; charset=utf-8",
data: myData,
pro …
1
vote
2answers
39 views
.NET Webservice doesn’t return JSON data anymore
Hello,
Last months I've been busy creating a .NET Webservice with several functions and a website written in html and Javascript which acts as the user interface and calls the web …
0
votes
3answers
32 views
Nested JSON in IE6 causes problems.
I'm making a request to a JSON page using jQuery's $.getJSON method, and from the returned JSON i'm creating some HTML and putting it on to the page.
The problems appears when I h …
0
votes
6answers
52 views
Javascript: Write Console.debug() output to browser?
I need to be able to take any JSON data and print the key/value pairs.
(something similar to print_r() in PHP)
Is this even possible with javascript?
0
votes
1answer
29 views
Get object within JSON object only by knowing its position, and not name
Hi, I'm currently looking into the Twitter-API - specifically the daily trends-API (http://search.twitter.com/trends/current.json).
Example return from Twitter
{
trends: {
…
2
votes
2answers
42 views
Django ajax formatting convention
What's the correct way to do an ajax request, I've seen people using a returning render_to_string so that they can do all their formatting within python using the template language …
