i am the following codes in javascript

var people = {
    "users" : [{id : this.getJID().toString()},{id : this.getJID().toString()}],
    "body" : messageBody
}

on my server end, I have the following:

JSONObject b = new JSONObject(jsonstring);
JSONArray users = b.getJSONArray("users");

I cannot get users because I will have the following exception.

org.json.JSONException: JSONObject["users"] is not a JSONArray.

I tried to cast to JSONObject but also gets error.

JSONObject o = b.getJSONObject("users");

org.json.JSONException: JSONObject["users"] is not a JSONObject.

What is wrong??

link|improve this question
What is the contents of "jsonstring"? – andyb Aug 5 '11 at 7:43
jsonstring is JSON.stringify(people). using json.org/java lib.. – anewbie Aug 5 '11 at 7:45
And what is people and the result of the stringify call? – Thomas Aug 5 '11 at 7:55
1  
@Thomas - dont quite understand. people is the js var. JSON.stringify(people) is what i sent via POST to my server side. – anewbie Aug 5 '11 at 7:59
2  
@anewbie: The JSON is serialized wrongly. The value of user is not an array but a string: {"users":"[...]","body":"test"} There should be no quotes around [...]. That's why you get the error. It seems like you recursively serialized the contents of people. – Felix Kling Aug 5 '11 at 8:12
show 6 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.