I used the link for JSON RPC. I am getting a response as expected. But when i try to parse the response, it\'s giving me json error.
My code:
JSONEntity
your result is actually returning a string not a json array. it will return json array if your json format would be like this
{ "id": 2, "result": [ { "ExhibitorID": 42 } ] }
currently it is in this form:
{ "id": 2, "result": "[ {\"ExhibitorID\":42, etc....} ]" }