JSON is a lightweight data exchange format and is often used with javascript and RESTful web-services. Its syntax is a subset of the JavaScript object literal notation. { "names": { "first": "John", "last": "Doe" }, "languages": [ "javascript", "python", "lisp" ] } See also jsonp ...

learn more… | top users | synonyms (1)

0
votes
0answers
6 views

Out of memory exception in gson.fromJson()

I use the following code for converting Json string(strWebserviceResult) to my Object: EntMyClass entMyClass = gson.fromJson(strWebserviceResult,EntMyClass.class); When strWebserviceResult is large ...
1
vote
2answers
24 views

JSON object parsing error in Jquery

[ { "regNo": "1", "regDate": "2025-05-12", "patientName": "Ratna", "address": "saasgasgasga", "city": "Hyderabad", "phno": "2147483647", ...
0
votes
0answers
3 views

WCF Json GET Service: Check that the sender and receiver's EndpointAddresses agree

I've been working in .NET for a while now, but I'm new to WCF. I'm trying to create my very first WCF service using JSON. I thought I would start really, really simple and then build from there. But ...
2
votes
1answer
12 views

Jackson handling Wrapped elements

I'm parsing the response from last.fm API. But it seems that they used some wrapper for some of the responses, which is causing a bit of a pain. To put an example: { "artists":{ "artist":[ ...
0
votes
0answers
13 views

Get Image URL to Listbox Binding from JSON

I have my JSON request that grabs the URI and can even put the items in binding but NOT the images. XAML: <Image delay:LowProfileImageLoader.UriSource="{Binding ImageUrl}" Width="120" ...
0
votes
1answer
24 views

Regex: Negating a whole word (needed to optimize a file)

I am trying to do a simple weather widget for Android, that provides temperatures just for my country (Jordan). The website I am using for the weather records provides a JSON file with country regions ...
0
votes
1answer
25 views

Create jquery variable from a php/sql query / JSON query

i have been searching this wonderful site of information but havent found exactly what im looking for, only bits and pieces . Im fairly new to the whole JavaScript language/jQuery library but im ...
0
votes
1answer
14 views

How do I get JSON Objects into my ListView Fragment?

I'm stepping my way thru gathering data off a mySQL server, converting it to JSON via PHP, getting the JSON asynchronously using AQuery, converting the result to a string/object, but now how do I get ...
0
votes
0answers
12 views

One domain model, multiple json views

We have a set of domain classes which are serialized to json via jackson using jersey services. We are currently annotating the classes with JAXB (although we're not tied to that). This works fine. ...
0
votes
0answers
5 views

Load ImageView via JSON content from the web, Button in listview

Okay hi kind people, I really need urgent help as i'm a novice in android and had been reading stackoverflow and alot more other android related sources for a few days through all these I was able to: ...
0
votes
3answers
33 views

Retrieving and Parsing JSON

What's the easiest way to retrieve JSON from a web-service and to parse it? Without using any additional plug-ins?
0
votes
3answers
25 views

How can I load a local json file?

Is there a way to configure firefox using about:config to allow local file access (for demo purposes)? Specifically using FF12, I need to be able to have local file access to json data. It runs fine ...
0
votes
0answers
15 views

WCF Rest Post JSON array of objects

I'm trying to post a JSONArray of objects to a restful WCF service and I'm not sure where I'm getting mixed up. Here is the JSON from an android application that I'm trying to post: { "data": [ ...
-2
votes
3answers
28 views

decode WHOID json code

I have whoid data in json format First,sorry for the long snipp, i want the list of County name & whoid Ex: United Kingdom - 23424975 But some how not able to do this. <?php $json = '[ { ...
0
votes
1answer
17 views

Django HttpResponse strips JSON of double escapes breaks jQuery

I've got an interesting problem with JSON and Django. I think I've narrowed it down to this problem. The problem is that I have a JSON object something like this: {"embed": "<iframe width='640' ...

1 2 3 4 5 1623
15 30 50 per page